---
newusersetup.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/newusersetup.sh b/newusersetup.sh
index 4520794..2e08800 100644
--- a/newusersetup.sh
+++ b/newusersetup.sh
@@ -106,10 +106,10 @@ while :
do
read -p "What shell do you want? [fish/zsh/bash] " NEWSHELL;
if [[ "$NEWSHELL" = "fish" ]]; then
- echo "exec $(which fish)" >> ~/.bashrc
+ echo "exec $(which fish)" >> ~/.bash_profile
break;
elif [[ "$NEWSHELL" = "zsh" ]]; then
- echo "exec $(which zsh)" >> ~/.bashrc
+ echo "exec $(which zsh)" >> ~/.bash_profile
break;
elif [[ "$NEWSHELL" = "bash" ]]; then
break;
--
2.31.1