From eb2177215b3c574573fbe967127fb7802a555cba Mon Sep 17 00:00:00 2001 From: Ivan Usov Date: Fri, 12 Jul 2024 10:52:01 +0200 Subject: [PATCH] Fix make_release script --- make_release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make_release.py b/make_release.py index 43d4038..13db8da 100755 --- a/make_release.py +++ b/make_release.py @@ -8,8 +8,8 @@ import subprocess def main(): branch = subprocess.check_output("git rev-parse --abbrev-ref HEAD", shell=True).decode().strip() - if branch != "master": - print("Aborting, not on 'master' branch.") + if branch != "main": + print("Aborting, not on 'main' branch.") return filepath = "pyzebra/__init__.py"