diff options
author | Matthew Bauer <mjbauer95@gmail.com> | 2019-07-25T13·43-0400 |
---|---|---|
committer | Matthew Bauer <mjbauer95@gmail.com> | 2019-07-25T13·44-0400 |
commit | 03addc3b0a79cb7a58ae5651d1915af7383a220c (patch) | |
tree | adc3ca8280480560a3a8e5414e023da0306cd707 | |
parent | b640f69a4d33eb3833cf0ac3000d189dacbd0f5a (diff) |
Use $HOME instead of $USER
$USER/.nix-profile will not be a path. I think $HOME/.nix-profile was the origininal intent. /cc @Grahamc
-rwxr-xr-x | tests/install-darwin.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/install-darwin.sh b/tests/install-darwin.sh index c99ce84acab0..9933eba94431 100755 --- a/tests/install-darwin.sh +++ b/tests/install-darwin.sh @@ -34,7 +34,7 @@ cleanup() { sudo rm -rf /etc/nix \ /nix \ /var/root/.nix-profile /var/root/.nix-defexpr /var/root/.nix-channels \ - "$USER/.nix-profile" "$USER/.nix-defexpr" "$USER/.nix-channels" + "$HOME/.nix-profile" "$HOME/.nix-defexpr" "$HOME/.nix-channels" } verify() { |