Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic committed Apr 3, 2024
1 parent f9d142f commit f0c44d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/mk-release.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def main():
sys.exit(0)
current_version = get_current_version()
new_version = args.new_version
if new_version.starts_with("v"):
if new_version.startswith("v"):
new_version = new_version[1:]
# Check that the new version has format x.y.z
if not re.match(r"\d+\.\d+\.\d+", new_version):
Expand Down

0 comments on commit f0c44d7

Please sign in to comment.