Skip to content

Commit

Permalink
Release script : Fix version comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Aug 23, 2017
1 parent 16472d2 commit d0e197c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/release/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __versionLessEqual( v1, v2 ) :
v1 = [ int( x ) for x in v1.split( "." ) ]
v2 = [ int( x ) for x in v2.split( "." ) ]

return v1 < v2
return v1 <= v2

# check we have a token available for the upload

Expand Down

0 comments on commit d0e197c

Please sign in to comment.