From c6c7b962462189988adefd852b3aec000e8666cd Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Sun, 3 Oct 2010 17:04:11 -0700 Subject: [PATCH] Recursively initialize submodules. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 9adfd3bc..83c41f95 100644 --- a/Rakefile +++ b/Rakefile @@ -129,7 +129,7 @@ end task :submodules do if File.exist?(File.dirname(__FILE__) + "/.git") sh %{git submodule sync} - sh %{git submodule update --init} + sh %{git submodule update --init --recursive} end end