Fixed issue rake

This commit is contained in:
Gene Liverman 2017-06-06 18:34:10 -07:00
parent cf7d1d131e
commit 12564309a6

View file

@ -32,8 +32,9 @@ namespace 'dots' do
desc 'Install Vundle Plugins' desc 'Install Vundle Plugins'
task :vim_plugins do task :vim_plugins do
command = 'vim +PluginInstall +qall' # running this command from bundler refuses to work
cmd.run(command) command = 'vim +PluginInstall! +qall'
puts "Run '#{command}' to get your Vundle plugins installed and/or updated"
end end
end end
# rubocop:enable Metrics/BlockLength # rubocop:enable Metrics/BlockLength