richard pushed to branch main at The Tor Project / Applications / torbrowser-launcher
Commits: 1a0562ba by asciiwolf at 2023-10-13T15:04:09+00:00 Fix TBB archive name format - - - - - 8276534d by richard at 2023-10-13T18:23:08+00:00 Merge branch 'asciiwolf-tbb-archive-name-fix' into 'main'
Fix TBB archive name format
Closes #4
See merge request tpo/applications/torbrowser-launcher!3 - - - - -
1 changed file:
- torbrowser_launcher/common.py
Changes:
===================================== torbrowser_launcher/common.py ===================================== @@ -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"] = (
View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compare...
tor-commits@lists.torproject.org