From e98eb4565c52a82b42c513859459d92ee2c3762d Mon Sep 17 00:00:00 2001 From: tituspijean Date: Mon, 24 Oct 2022 23:30:09 +0200 Subject: [PATCH] Fix auto-updater --- .github/workflows/updater.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/updater.py b/.github/workflows/updater.py index b655132..002368b 100755 --- a/.github/workflows/updater.py +++ b/.github/workflows/updater.py @@ -105,7 +105,7 @@ def main(): return # Proceed only if a PR for this new version does not already exist - branch = f"ci-auto-update-v${latest_version}" + branch = f"ci-auto-update-v{latest_version}" command = ["git", "ls-remote", "--exit-code", "-h", repo, branch] if run(command, stderr=PIPE, stdout=PIPE, check=False).returncode == 0: logging.warning("A branch already exists for this update")