summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpkg/tools/bitmask-bootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tools/bitmask-bootstrap.sh b/pkg/tools/bitmask-bootstrap.sh
index 81659910..8c5a2af7 100755
--- a/pkg/tools/bitmask-bootstrap.sh
+++ b/pkg/tools/bitmask-bootstrap.sh
@@ -13,7 +13,7 @@ function add_pew_to_environment()
read -p "Do you want to add pew executable to your .zshrc?> " yn
case $yn in
[Yy]* ) echo "PATH=~/.local/bin:\$PATH" >> ~/.zshrc; echo "source \$(pew shell_config)" >> ~/.zshrc; break;;
- [Nn]* ) exit;;
+ [Nn]* ) return;;
* ) echo "Please answer yes or no.";;
esac
done