From b2917c8246d3f4f1c7d111a8976ce28475083df2 Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Wed, 12 Jul 2017 20:29:58 -0400 Subject: [PATCH] Clean up nix hints from the old insstaller --- tests/install-darwin.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/install-darwin.sh b/tests/install-darwin.sh index 4a6ab7d6..9084d92c 100755 --- a/tests/install-darwin.sh +++ b/tests/install-darwin.sh @@ -19,6 +19,13 @@ cleanup() { fi done + for file in ~/.bash_profile ~/.bash_login ~/.profile ~/.zshenv ~/.zprofile ~/.zshrc ~/.zlogin; do + cat "$file" | grep -v nix-profile > "$file.next" + mv "$file.next" "$file" + done + + + for i in $(seq 1 $(sysctl -n hw.ncpu)); do sudo /usr/bin/dscl . -delete "/Users/nixbld$i" || true done @@ -64,9 +71,6 @@ verify set -eux - cat ~/.profile | grep -v nix-profile > ~/.profile-next - mv ~/.profile-next ~/.profile - cleanup yes | ./install