From 12564309a67aaad11decaf05eca424a83596f880 Mon Sep 17 00:00:00 2001 From: Gene Liverman Date: Tue, 6 Jun 2017 18:34:10 -0700 Subject: [PATCH] Fixed issue rake --- bin/rake_tasks.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bin/rake_tasks.rb b/bin/rake_tasks.rb index 006aab5..c678377 100644 --- a/bin/rake_tasks.rb +++ b/bin/rake_tasks.rb @@ -32,8 +32,9 @@ namespace 'dots' do desc 'Install Vundle Plugins' task :vim_plugins do - command = 'vim +PluginInstall +qall' - cmd.run(command) + # running this command from bundler refuses to work + command = 'vim +PluginInstall! +qall' + puts "Run '#{command}' to get your Vundle plugins installed and/or updated" end end # rubocop:enable Metrics/BlockLength