Skip to content

Commit

Permalink
g
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Aug 5, 2024
1 parent 7f8cdfd commit c2541a1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/versionCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ jobs:
return [
int( versions["gafferMilestoneVersion"] ),
int( versions["gafferMajorVersion"] ),
int( versions["gafferMinorVersion"] ),
int( versions["gafferPatchVersion"] ),
]
# Get version number from the merge commit and from the
Expand All @@ -51,8 +49,8 @@ jobs:
if sourceVersion != mergeVersion :
sys.stderr.write(
"Source branch version {} does not match merged version {}. Did you choose the wrong target branch?\n".format(
".".join( sourceVersion ),
".".join( mergeVersion )
".".join( str( v ) for v in sourceVersion ),
".".join( str( v ) for v in mergeVersion )
)
)
sys.exit( 1 )
Expand Down

0 comments on commit c2541a1

Please sign in to comment.