From 704da3b226135f5ec2ab6ef6304849eb5b204912 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 21 Jul 2016 12:09:48 +0200 Subject: [PATCH] ZSH in bash profile to do not break scp --- unixconf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unixconf.sh b/unixconf.sh index 22b262e..bc71dd7 100755 --- a/unixconf.sh +++ b/unixconf.sh @@ -7,7 +7,7 @@ for musthave in $musthaves; do which "$musthave" >/dev/null 2>&1 if [ "$?" -ne 0 ]; then echo "You should install ${musthave}." - echo "On Ubuntu 14.04: apt-get install zsh wget git vim openssh-client rxvt-unicode unzip ruby exuberant-ctags" + echo "On Ubuntu 14.04: apt-get install zsh wget git vim-nox openssh-client rxvt-unicode unzip ruby exuberant-ctags" exit fi done @@ -15,7 +15,7 @@ done # ZSH setup SHELL=zsh sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" echo "Setting ZSH as default." -echo "exec zsh" >> "$HOME/.bashrc" +echo "exec zsh" >> "$HOME/.bash_profile" # Copy configurations tempdir="temp_$(date -I)"