Add support for pulling recursive git modules as as well as main project

This commit is contained in:
allegroai 2020-02-23 15:48:12 +02:00
parent 95d503afdd
commit 8f23f3b4c0

View File

@ -456,7 +456,7 @@ class Git(VCS):
)
def pull(self):
self.call("fetch", "--all", cwd=self.location)
self.call("fetch", "--all", "--recurse-submodules", cwd=self.location)
info_commands = dict(
url=Argv(executable_name, "ls-remote", "--get-url", "origin"),