We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50774ed commit 4758c6eCopy full SHA for 4758c6e
scripts/dist.py
@@ -43,7 +43,7 @@ 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
49
return False
0 commit comments