From df3b6ea65cf0ec1183ec20440d8bd9da2d260371 Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Fri, 2 Apr 2021 16:53:03 +0200 Subject: [PATCH] Create log file for VCSException In case there is a VCS error (git tag not found), create a log file in the F-Droid repo so it is shown on the monitor (currently 404). --- fdroidserver/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fdroidserver/build.py b/fdroidserver/build.py index 75d88944..d1b347d6 100644 --- a/fdroidserver/build.py +++ b/fdroidserver/build.py @@ -1181,6 +1181,7 @@ def main(): common.force_exit(1) add_failed_builds_entry(failed_builds, appid, build, vcse) wikilog = str(vcse) + common.deploy_build_log_with_rsync(appid, build.versionCode, str(vcse)) except FDroidException as e: with open(os.path.join(log_dir, appid + '.log'), 'a+') as f: f.write('\n\n============================================================\n')