Skip to content

Commit 4758c6e

Browse files
committed
fix a bug
1 parent 50774ed commit 4758c6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def checkMavenVersion():
4343

4444
above = MAVEN_VERSION_ABOVE.split(".")
4545
for index, v in enumerate(mvn_version):
46-
if int(above[index]) > int(v):
46+
if int(above[index]) < int(v):
4747
return True
4848

4949
return False

0 commit comments

Comments
 (0)