Skip to content

Commit bda87ab

Browse files
committed
Removed two comment lines which are not relevant.
1 parent 415d12e commit bda87ab

1 file changed

Lines changed: 2 additions & 8 deletions

File tree

scripts/dist.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,16 +38,10 @@ def checkMavenVersion():
3838
match = re.search(MAVEN_VERSION_REGEX, result_out)
3939

4040
if match == None:
41-
print("\nVersion could not be retrieved with mvn -v command")
42-
43-
# might happen depending on installation path... instead of crashing immediately,
44-
# we try to build, as it might be the correct version... if not, it will fail anyway
45-
# TODO ideally, should rather use "mvn -v" to determine the version number...
46-
# although it would be bit tricky to implement (so not super important)
41+
print("\nVersion could not be retrieved with mvn -v command as well")
42+
# might happen depending on installation path... instead of crashing immediately,
4743
return True
4844

49-
# exit(1)
50-
5145
mvn_txt = match.group()
5246
mvn_version = mvn_txt.split(".")
5347

0 commit comments

Comments
 (0)