From 3f6fd3b3e08d339bbf2bcb97372461ef5b18358c Mon Sep 17 00:00:00 2001 From: Fabio Gallonetto Date: Mon, 25 Mar 2013 10:25:03 +0000 Subject: [PATCH] Fix a bug preventing the correct update of vim Somehow I forgot to execute "install" after the vundle migration on the "update" task --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 7080ae9b..d2bd17d4 100644 --- a/Rakefile +++ b/Rakefile @@ -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