diff options
author | Jörg Thalheim <Mic92@users.noreply.github.com> | 2017-05-07T06·41+0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-07T06·41+0100 |
commit | 542fe0d8f3f25025a2642583d8593580a5d10e3a (patch) | |
tree | 0f38cbf9740428c0b0404cd3010ca7afe30da3e3 /scripts | |
parent | bb50c8931934d04dbf61bd245b4583f8c1ac4fd9 (diff) |
nix-profile.sh: remove sbin from PATH
sbin is a symlink to bin. profiles only contains packages, which have this symlink. It is a subset of bin. related to https://github.com/NixOS/nixpkgs/pull/25550
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/nix-profile.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nix-profile.sh.in b/scripts/nix-profile.sh.in index 3cdf431041cb..ab95c09c8305 100644 --- a/scripts/nix-profile.sh.in +++ b/scripts/nix-profile.sh.in @@ -85,6 +85,6 @@ if [ -n "$HOME" ] && [ -n "$USER" ]; then export MANPATH="$NIX_LINK/share/man:$MANPATH" fi - export PATH="$NIX_LINK/bin:$NIX_LINK/sbin:$__savedpath" + export PATH="$NIX_LINK/bin:$__savedpath" unset __savedpath NIX_LINK NIX_USER_PROFILE_DIR NIX_PROFILES fi |