Skip to content
Snippets Groups Projects
Commit 8276534d authored by richard's avatar richard
Browse files

Merge branch 'asciiwolf-tbb-archive-name-fix' into 'main'

Fix TBB archive name format

Closes #4

See merge request !3
parents 4652b442 1a0562ba
No related branches found
No related tags found
1 merge request!3Fix TBB archive name format
......@@ -104,11 +104,11 @@ class Common(object):
if tbb_version:
# tarball filename
if self.architecture == "x86_64":
arch = "linux64"
arch = "linux-x86_64"
else:
arch = "linux32"
arch = "linux-i686"
tarball_filename = "tor-browser-" + arch + "-" + tbb_version + "_ALL.tar.xz"
tarball_filename = "tor-browser-" + arch + "-" + tbb_version + ".tar.xz"
# tarball
self.paths["tarball_url"] = (
......
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