From 7631a38ec4891ad496b525b3a6fd697255ae023b Mon Sep 17 00:00:00 2001 From: Salamandar <6552989+Salamandar@users.noreply.github.com> Date: Tue, 25 Oct 2022 14:12:44 +0200 Subject: [PATCH] Fix: remove typo Co-authored-by: tituspijean --- .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 0f1b202..881a7a8 100755 --- a/.github/workflows/updater.py +++ b/.github/workflows/updater.py @@ -115,7 +115,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")