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

pull/18777/head
chris.schmidt 10 years ago committed by Matt Clay
parent 4c71598049
commit e7c39a30ca

@ -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