1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Recursively initialize submodules.

This commit is contained in:
Nathan Weizenbaum 2010-10-03 17:04:11 -07:00
parent 92fe82c507
commit c6c7b96246

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