From eee0e9bd95e490fae6e44d77828aaa86154df804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Thu, 11 Aug 2022 15:51:03 +0200 Subject: [PATCH] fix updater script --- .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 8d7ede6..019ce2a 100755 --- a/.github/workflows/updater.py +++ b/.github/workflows/updater.py @@ -102,7 +102,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")