We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19d976f + 09aef13 commit 64984e4Copy full SHA for 64984e4
1 file changed
scripts/dist.py
@@ -43,10 +43,12 @@ def checkMavenVersion():
43
44
above = MAVEN_VERSION_ABOVE.split(".")
45
for index, v in enumerate(mvn_version):
46
- if int(above[index]) > int(v):
+ if int(above[index]) < int(v):
47
return True
48
+ elif int(above[index]) > int(v):
49
+ return False
50
- return False
51
+ return True # same
52
53
54
if not checkMavenVersion():
0 commit comments