This commit is contained in:
Thomas Forgione 2019-04-16 14:06:49 +02:00
parent 22e1eccdd2
commit 8537473184
No known key found for this signature in database
GPG Key ID: BFD17A2D71B3B5E7
1 changed files with 3 additions and 1 deletions

View File

@ -155,7 +155,9 @@ configure_zsh() {
info "you don't have root, but you can run 'exec zsh' at the end of your bashrc" info "you don't have root, but you can run 'exec zsh' at the end of your bashrc"
yes_no_ask "do you wish to do that ?" yes_no_ask "do you wish to do that ?"
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "\nexec zsh\n" >> $HOME/.bashrc echo >> $HOME/.bashrc
echo "exec zsh" >> $HOME/.bashrc
echo >> $HOME/.bashrc
else else
info "not doing anything" info "not doing anything"
fi fi