Skip to content
This repository was archived by the owner on Oct 7, 2020. It is now read-only.

Commit fa6c130

Browse files
authored
Merge pull request #1036 from Anrock/shake-recursive-submodules
Sync & update submodules recursively in Shakefile
2 parents b165e6b + 1db4f33 commit fa6c130

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Shakefile.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,8 @@ buildIcuMacosFix version = execStackWithYaml_
129129

130130
updateSubmodules :: Action ()
131131
updateSubmodules = do
132-
command_ [] "git" ["submodule", "sync"]
133-
command_ [] "git" ["submodule", "update", "--init"]
132+
command_ [] "git" ["submodule", "sync", "--recursive"]
133+
command_ [] "git" ["submodule", "update", "--init", "--recursive"]
134134

135135
installCabal :: GhcPath -> Action ()
136136
installCabal ghc = do

0 commit comments

Comments
 (0)