Removed version check from main as it is checked in the download function. Having the check here was breaking "latest version" functionality.

reviewable/pr18780/r1
chris.schmidt 11 years ago
parent 44bfe5a7d6
commit 4dfbafb339

@ -349,8 +349,7 @@ def main():
prev_state = "absent"
if os.path.isdir(dest):
dest = dest + "/" + artifact_id + "-" + version + ".jar"
dest = dest + "/" + artifact_id + "-" + version + "." + extension
if os.path.lexists(dest):
prev_state = "present"
else:

Loading…
Cancel
Save