diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/install-multi-user.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-multi-user.sh b/scripts/install-multi-user.sh index 0e9500a98eb0..411de31f4cde 100644 --- a/scripts/install-multi-user.sh +++ b/scripts/install-multi-user.sh @@ -369,7 +369,7 @@ and try again. EOF fi - if grep -qi "nix" "$profile_target"; then + if [ -e "$profile_target" ] && grep -qi "nix" "$profile_target"; then failure <<EOF It looks like $profile_target already has some Nix configuration in there. There should be no reason to run this again. If you're having |