Skip to content

Commit

Permalink
bugfix: fixing branch name: master, not main (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
fmilthaler committed Jul 25, 2023
1 parent f513a97 commit ee4f96e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ def main():

file_path = "version"

if base_branch_name not in ["main", "develop"]:
raise ValueError("Base branch name must be 'main' or 'develop'.")
if base_branch_name not in ["master", "develop"]:
raise ValueError("Base branch name must be 'master' or 'develop'.")

if source_branch_name is None:
raise ValueError("Source branch name must not be empty/None.")
Expand Down

0 comments on commit ee4f96e

Please sign in to comment.