diff --git a/comp.py b/comp.py index a3a1f8c158b3219e0fef4cbfd387074a374f867c..4bc179a680595d30e92ee1dc8fc341a710998302 100755 --- a/comp.py +++ b/comp.py @@ -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