diff options
Diffstat (limited to 'pkg/tools')
-rwxr-xr-x | pkg/tools/bitmask-bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/tools/bitmask-bootstrap.sh b/pkg/tools/bitmask-bootstrap.sh index 8165991..8c5a2af 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 |