Skip to content

Commit

Permalink
WIP6
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Oct 23, 2023
1 parent 4af8450 commit ca6f4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/releases/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def run_with_log(args, name, msg = None):
error(msg+" failed. See "+name+".log.")

def is_possible_gap_release_tag(tag):
return tag == "nightly" || re.fullmatch( r"v[1-9]+\.[0-9]+\.[0-9]+", tag) != None
return tag == "nightly" or re.fullmatch( r"v[1-9]+\.[0-9]+\.[0-9]+", tag) != None

def verify_is_possible_gap_release_tag(tag):
if not is_possible_gap_release_tag(tag):
Expand Down

0 comments on commit ca6f4e5

Please sign in to comment.