From c6621fa1176d6f0cccd598ca6b63a2648c786423 Mon Sep 17 00:00:00 2001 From: Paul Johnston <12446446+maloo1@users.noreply.github.com> Date: Wed, 16 Jun 2021 02:56:03 +0800 Subject: [PATCH] fix: Also cleaning up the build dir --- gitea_auto_update/lib/build.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gitea_auto_update/lib/build.py b/gitea_auto_update/lib/build.py index fc201ab..1d1c9c3 100644 --- a/gitea_auto_update/lib/build.py +++ b/gitea_auto_update/lib/build.py @@ -17,3 +17,4 @@ def build_from_source(tag, gt_file, source_dir): os.system("git checkout " + tag) os.system('TAGS="bindata sqlite sqlite_unlock_notify" make generate build') os.system("cp gitea " + gt_file) + os.system("rm -f gitea")