diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-01-16T15·17+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-01-16T15·17+0000 |
commit | f899e8ce4df3e700ae5b47279c16edc0efb4aeed (patch) | |
tree | 5fddfa3f1aa61169e202c004182de727e02e71b5 /scripts | |
parent | b1c5f3c10dbcbbb9469ba7147bb26acf6a9aa733 (diff) |
* Test whether the symlink, not its target, exists.
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 064a6a347a4a..55cff3e62d9c 100644 --- a/scripts/nix-profile.sh.in +++ b/scripts/nix-profile.sh.in @@ -1,7 +1,7 @@ if test -n "$HOME"; then NIX_LINK="$HOME/.nix-userenv" - if ! test -a "$NIX_LINK"; then + if ! test -L "$NIX_LINK"; then echo "creating $NIX_LINK" _NIX_DEF_LINK=@localstatedir@/nix/links/current ln -s "$_NIX_DEF_LINK" "$NIX_LINK" |