Fix a bug preventing the correct update of vim

Somehow I forgot to execute "install" after the vundle migration
on the "update" task
This commit is contained in:
Fabio Gallonetto
2013-03-25 10:25:03 +00:00
parent 660419b4ea
commit 3f6fd3b3e0

View File

@@ -42,7 +42,7 @@ end
task :update do
Rake::Task["vundle_migration"].execute if needs_migration_to_vundle?
Rake::Task["install"]
Rake::Task["install"].execute
#TODO: for now, we do the same as install. But it would be nice
#not to clobber zsh files
end