Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix nix-env
Browse files Browse the repository at this point in the history
  • Loading branch information
r-darwish committed Apr 6, 2019
1 parent 936761e commit 0fc90b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/steps/os/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub fn run_homebrew(cleanup: bool, run_type: RunType) -> Result<(), Error> {
#[must_use]
pub fn run_nix(run_type: RunType) -> Result<(), Error> {
let nix = require("nix")?;
let nix_env = require("nix_env")?;
let nix_env = require("nix-env")?;

print_separator("Nix");
run_type.execute(&nix).arg("upgrade-nix").check_run()?;
Expand Down

0 comments on commit 0fc90b0

Please sign in to comment.