Fix release validation for repos with submodules

This commit is contained in:
rubenwardy 2020-03-27 15:23:18 +00:00
parent b0f32affcb
commit 4a25435f7a
1 changed files with 3 additions and 0 deletions

View File

@ -162,6 +162,9 @@ def cloneRepo(urlstr, ref=None, recursive=False):
origin.fetch()
origin.pull(ref)
for submodule in repo.submodules:
submodule.update(init=True)
return gitDir, repo
except GitCommandError as e: