Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit eb217721 authored by usov_i's avatar usov_i
Browse files

Fix make_release script

parent 89fb4f05
No related branches found
No related tags found
No related merge requests found
...@@ -8,8 +8,8 @@ import subprocess ...@@ -8,8 +8,8 @@ import subprocess
def main(): def main():
branch = subprocess.check_output("git rev-parse --abbrev-ref HEAD", shell=True).decode().strip() branch = subprocess.check_output("git rev-parse --abbrev-ref HEAD", shell=True).decode().strip()
if branch != "master": if branch != "main":
print("Aborting, not on 'master' branch.") print("Aborting, not on 'main' branch.")
return return
filepath = "pyzebra/__init__.py" filepath = "pyzebra/__init__.py"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment