mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
clean_repos plugin: also clean submodules
This commit is contained in:
parent
07481953ae
commit
46e5fa3714
1 changed files with 4 additions and 1 deletions
|
@ -32,10 +32,13 @@ def main():
|
||||||
|
|
||||||
for appid, app in apps.items():
|
for appid, app in apps.items():
|
||||||
if "Builds" in app and len(app["Builds"]) > 0:
|
if "Builds" in app and len(app["Builds"]) > 0:
|
||||||
|
build = app.get('Builds')[-1]
|
||||||
logging.info(_("Cleaning up '{appid}' VCS").format(appid=appid))
|
logging.info(_("Cleaning up '{appid}' VCS").format(appid=appid))
|
||||||
try:
|
try:
|
||||||
vcs, build_dir = common.setup_vcs(app)
|
vcs, build_dir = common.setup_vcs(app)
|
||||||
vcs.gotorevision(app["Builds"][-1].commit)
|
vcs.gotorevision(build.commit)
|
||||||
|
if build.submodules:
|
||||||
|
vcs.initsubmodules()
|
||||||
|
|
||||||
except VCSException:
|
except VCSException:
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue