Skip to content

Commit

Permalink
CI : Fix release version check
Browse files Browse the repository at this point in the history
  • Loading branch information
murraystevenson committed Aug 27, 2024
1 parent 4ce7066 commit 6634836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main/setBuildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
for line in buildPy.readlines() :
versionMatch = versionRe.match( line )
if versionMatch :
version = versionMatch.group( 2 ).strip( "'\"" )
version = versionMatch.group( 1 ).strip( "'\"" )

if version != tag :
sys.stderr.write( "Tag \"{}\" does not match build.py __version \"{}\"\n".format( tag, version ) )
Expand Down

0 comments on commit 6634836

Please sign in to comment.