Skip to content
Snippets Groups Projects
Commit cf57c979 authored by akwizgran's avatar akwizgran
Browse files

Don't clobber built jar when downloading reference jar.

parent a115b134
No related branches found
No related tags found
1 merge request!29Don't clobber built jar when downloading reference jar
Pipeline #14875 passed with warnings
...@@ -25,7 +25,7 @@ def verify(version, platform): ...@@ -25,7 +25,7 @@ def verify(version, platform):
# download reference binary # download reference binary
os.makedirs(REF_DIR, exist_ok=True) os.makedirs(REF_DIR, exist_ok=True)
file_name = get_final_file_name(versions, platform) file_name = get_final_file_name(versions, platform)
ref_file = os.path.join(REF_DIR, file_name) ref_file = os.path.abspath(os.path.join(REF_DIR, os.path.basename(file_name)))
# try downloading from maven central # try downloading from maven central
check_call(['wget', '--no-verbose', get_url(versions, platform), '-O', ref_file]) check_call(['wget', '--no-verbose', get_url(versions, platform), '-O', ref_file])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment