From 581d2e5fe4efda3d1ce6225d856635b4b8f4e94b Mon Sep 17 00:00:00 2001 From: Pete Fotheringham Date: Fri, 2 May 2025 18:19:49 +0100 Subject: [PATCH] Disable commiting and pushing to master --- updater/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/updater/main.py b/updater/main.py index b6dfaf6..b2c263a 100644 --- a/updater/main.py +++ b/updater/main.py @@ -28,6 +28,9 @@ def update_if_needed(module: str, release: ApkRelease): version_code_file.truncate() version_code_file.close() + print('Need to update {} to {}'.format(module, release.version_name)) + return + print('commit and push...') git.add_commit_push(module_dir, 'Update {} to {}'.format(module, release.version_name))