Skip to content

Commit fb4aceb

Browse files
committed
Merge pull request spf13#247 from SecurityForUs/install_echo_fix
Fixed echo printing out \n's
2 parents 3e24558 + 70694c3 commit fb4aceb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bootstrap.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ lnif() {
1717
fi
1818
}
1919

20-
echo "Thanks for installing spf13-vim\n"
20+
echo "Thanks for installing spf13-vim"
2121

2222
# Backup existing .vim stuff
23-
echo "backing up current vim config\n"
23+
echo "backing up current vim config"
2424
today=`date +%Y%m%d`
2525
for i in $HOME/.vim $HOME/.vimrc $HOME/.gvimrc; do [ -e $i ] && [ ! -L $i ] && mv $i $i.$today; done
2626

2727

2828
if [ ! -e $endpath/.git ]; then
29-
echo "cloning spf13-vim\n"
29+
echo "cloning spf13-vim"
3030
git clone --recursive -b 3.0 http://github.com/spf13/spf13-vim.git $endpath
3131
else
32-
echo "updating spf13-vim\n"
32+
echo "updating spf13-vim"
3333
cd $endpath && git pull
3434
fi
3535

0 commit comments

Comments
 (0)