Skip to content
Snippets Groups Projects
Commit b7bbff03 authored by Boman Romain's avatar Boman Romain
Browse files

add --recursive flag for submodules

parent 3b72f41f
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ class GitRepo(Repo):
print('INFO: branch %s does not exist on %s' % (branch, self.url))
branch = 'master'
print('INFO: checking out %s' % branch)
cmd = "git clone --branch %s %s --quiet %s %s" % \
cmd = "git clone --recursive --branch %s %s --quiet %s %s" % \
(branch, depth,
self.url, self.name)
return cmd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment