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

Use zip extension for reproducing old versions.

parent fb2c7167
No related branches found
No related tags found
1 merge request!15Add Tor 0.3.5.14
Pipeline #6792 passed
......@@ -49,7 +49,11 @@ def get_file_suffix(versions, android=False):
def get_final_file_name(versions, android=False):
return 'tor-%s.jar' % get_file_suffix(versions, android)
version = get_version_tag(versions)
if version < '0.3.5.14':
return 'tor-%s.zip' % get_file_suffix(versions, android)
else:
return 'tor-%s.jar' % get_file_suffix(versions, android)
def get_sources_file_name(versions, android=False):
......
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