Recursively initialize submodules.

This commit is contained in:
Nathan Weizenbaum 2010-10-03 17:04:11 -07:00
parent 92fe82c507
commit c6c7b96246
1 changed files with 1 additions and 1 deletions

View File

@ -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