We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e24558 + 70694c3 commit fb4acebCopy full SHA for fb4aceb
bootstrap.sh
@@ -17,19 +17,19 @@ lnif() {
17
fi
18
}
19
20
-echo "Thanks for installing spf13-vim\n"
+echo "Thanks for installing spf13-vim"
21
22
# Backup existing .vim stuff
23
-echo "backing up current vim config\n"
+echo "backing up current vim config"
24
today=`date +%Y%m%d`
25
for i in $HOME/.vim $HOME/.vimrc $HOME/.gvimrc; do [ -e $i ] && [ ! -L $i ] && mv $i $i.$today; done
26
27
28
if [ ! -e $endpath/.git ]; then
29
- echo "cloning spf13-vim\n"
+ echo "cloning spf13-vim"
30
git clone --recursive -b 3.0 http://github.com/spf13/spf13-vim.git $endpath
31
else
32
- echo "updating spf13-vim\n"
+ echo "updating spf13-vim"
33
cd $endpath && git pull
34
35
0 commit comments