From 429bba4779ed87e786a9f1c10fb86ef2437647f4 Mon Sep 17 00:00:00 2001 From: Yan Pritzker Date: Thu, 27 Sep 2012 13:27:20 -0700 Subject: [PATCH] Ensure prezto and other submodules are correctly installed recursive [Close #170] --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 482d650..0ed02a5 100644 --- a/Rakefile +++ b/Rakefile @@ -26,7 +26,7 @@ end desc "Init and update submodules." task :submodules do - sh('git submodule update --init') + sh('git submodule update --init --recursive') end task :default => 'install'