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"