Skip to content

Commit

Permalink
Merge pull request #584 from Cade-Forester/patch-1
Browse files Browse the repository at this point in the history
Prevent stopping installation process: disable 'more' option
  • Loading branch information
spf13 committed Mar 26, 2014
2 parents bf76da7 + 52f6b41 commit 0225b46
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,14 @@ create_symlinks() {
setup_vundle() {
system_shell="$SHELL"
export SHELL='/bin/sh'
vim -u "$HOME/.vimrc.bundles" +BundleInstall! +BundleClean +qall

vim \
-u "$HOME/.vimrc.bundles" \
"+set nomore" \
+BundleInstall! \
+BundleClean \
+qall

export SHELL="$system_shell"

success "$1"
Expand Down

0 comments on commit 0225b46

Please sign in to comment.