diff options
author | Kali Kaneko <kali@leap.se> | 2017-07-28 19:15:16 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-07-28 21:10:28 -0400 |
commit | 93346ab16452df61322a22e9f3437d950f2a102d (patch) | |
tree | 608d4a006034a46e093a8bac73ade841d774a53b | |
parent | 184e335b50803f6bd2bcedce9fe746dc97c40eb6 (diff) |
[pkg] do not exit, return
-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 |