clean_repos plugin: also clean submodules

This commit is contained in:
Jochen Sprickerhof 2022-11-24 20:50:39 +01:00 committed by Hans-Christoph Steiner
parent 07481953ae
commit 46e5fa3714
1 changed files with 4 additions and 1 deletions

View File

@ -32,10 +32,13 @@ def main():
for appid, app in apps.items():
if "Builds" in app and len(app["Builds"]) > 0:
build = app.get('Builds')[-1]
logging.info(_("Cleaning up '{appid}' VCS").format(appid=appid))
try:
vcs, build_dir = common.setup_vcs(app)
vcs.gotorevision(app["Builds"][-1].commit)
vcs.gotorevision(build.commit)
if build.submodules:
vcs.initsubmodules()
except VCSException:
pass