lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Threads by month
  • ----- 2026 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

  • 1 participants
  • 20430 discussions
[Git][tpo/applications/tor-browser][tor-browser-150.0a1-16.0-2] fixup! TB 40933: Add tor-launcher functionality
by Pier Angelo Vendrame (@pierov) 13 May '26

13 May '26
Pier Angelo Vendrame pushed to branch tor-browser-150.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 636582ef by Pier Angelo Vendrame at 2026-05-13T14:45:15+02:00 fixup! TB 40933: Add tor-launcher functionality TB 44952: Fix the startup error with TOR_PROVIDER=none. - - - - - 1 changed file: - toolkit/components/tor-launcher/TorProviderNone.sys.mjs Changes: ===================================== toolkit/components/tor-launcher/TorProviderNone.sys.mjs ===================================== @@ -2,7 +2,8 @@ import { TorProviderBase } from "moz-src:///toolkit/components/tor-launcher/TorP const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { - TorLauncherUtil: "resource://gre/modules/TorLauncherUtil.sys.mjs", + TorLauncherUtil: + "moz-src:///toolkit/components/tor-launcher/TorLauncherUtil.sys.mjs", }); /** View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/636582e… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/636582e… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-150.0a1-16.0-2] 2 commits: fixup! BB 44711: Hide unwanted setting controls in Base Browser.
by henry (@henry) 13 May '26

13 May '26
henry pushed to branch mullvad-browser-150.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser Commits: 8dd0e85e by Henry Wilkes at 2026-05-13T10:05:33+01:00 fixup! BB 44711: Hide unwanted setting controls in Base Browser. BB 44745: Hide SSO using settings config. - - - - - 7355450a by Henry Wilkes at 2026-05-13T10:05:35+01:00 fixup! BB 40717: Hide Windows SSO in settings BB 44745: Use data-hidden-from-search rather than CSS to hide SSO settings. This will ensure that this patch can be dropped alongside upstream's markup when it switches entirely to the config approach. - - - - - 3 changed files: - browser/components/preferences/privacy.inc.xhtml - browser/components/preferences/privacy.js - browser/themes/shared/preferences/preferences.css Changes: ===================================== browser/components/preferences/privacy.inc.xhtml ===================================== @@ -526,7 +526,7 @@ data-l10n-attrs="hidden" flex="1"/> #ifdef XP_WIN - <hbox id="windows-sso" align="center"> + <hbox id="windows-sso" align="center" hidden="true" data-hidden-from-search="true"> <checkbox data-l10n-id="forms-windows-sso" preference="network.http.windows-sso.enabled" class="tail-with-learn-more"/> @@ -537,6 +537,8 @@ /> </hbox> <description id="windows-sso-caption" class="indent tip-caption" + hidden="true" + data-hidden-from-search="true" data-l10n-id="forms-windows-sso-desc"/> #endif </vbox> ===================================== browser/components/preferences/privacy.js ===================================== @@ -500,7 +500,8 @@ Preferences.addSetting({ Preferences.addSetting({ id: "allowWindowSSO", pref: "network.http.windows-sso.enabled", - visible: () => AppConstants.platform === "win", + // Hide Windows SSO (single sign on). tor-browser#40717. + visible: () => false, }); Preferences.addSetting({ ===================================== browser/themes/shared/preferences/preferences.css ===================================== @@ -596,13 +596,6 @@ html|label[disabled] { margin-inline-start: 0; } -@media (-moz-platform: windows) { - #windows-sso, - #windows-sso-caption { - display: none; - } -} - /** * Dialog */ View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/e7… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/e7… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-150.0a1-16.0-2] 2 commits: fixup! BB 44711: Hide unwanted setting controls in Base Browser.
by henry (@henry) 13 May '26

13 May '26
henry pushed to branch tor-browser-150.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 44de04fc by Henry Wilkes at 2026-05-12T18:25:54+01:00 fixup! BB 44711: Hide unwanted setting controls in Base Browser. BB 44745: Hide SSO using settings config. - - - - - c3ff747f by Henry Wilkes at 2026-05-12T18:27:19+01:00 fixup! BB 40717: Hide Windows SSO in settings BB 44745: Use data-hidden-from-search rather than CSS to hide SSO settings. This will ensure that this patch can be dropped alongside upstream's markup when it switches entirely to the config approach. - - - - - 3 changed files: - browser/components/preferences/privacy.inc.xhtml - browser/components/preferences/privacy.js - browser/themes/shared/preferences/preferences.css Changes: ===================================== browser/components/preferences/privacy.inc.xhtml ===================================== @@ -525,7 +525,7 @@ data-l10n-attrs="hidden" flex="1"/> #ifdef XP_WIN - <hbox id="windows-sso" align="center"> + <hbox id="windows-sso" align="center" hidden="true" data-hidden-from-search="true"> <checkbox data-l10n-id="forms-windows-sso" preference="network.http.windows-sso.enabled" class="tail-with-learn-more"/> @@ -536,6 +536,8 @@ /> </hbox> <description id="windows-sso-caption" class="indent tip-caption" + hidden="true" + data-hidden-from-search="true" data-l10n-id="forms-windows-sso-desc"/> #endif </vbox> ===================================== browser/components/preferences/privacy.js ===================================== @@ -500,7 +500,8 @@ Preferences.addSetting({ Preferences.addSetting({ id: "allowWindowSSO", pref: "network.http.windows-sso.enabled", - visible: () => AppConstants.platform === "win", + // Hide Windows SSO (single sign on). tor-browser#40717. + visible: () => false, }); Preferences.addSetting({ ===================================== browser/themes/shared/preferences/preferences.css ===================================== @@ -596,13 +596,6 @@ html|label[disabled] { margin-inline-start: 0; } -@media (-moz-platform: windows) { - #windows-sso, - #windows-sso-caption { - display: none; - } -} - /** * Dialog */ View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/66d59b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/66d59b… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-15.0] Bug 41798: Update the URL to versions.ini in relprep.py.
by Pier Angelo Vendrame (@pierov) 13 May '26

13 May '26
Pier Angelo Vendrame pushed to branch maint-15.0 at The Tor Project / Applications / tor-browser-build Commits: dcc48c63 by Pier Angelo Vendrame at 2026-05-13T08:50:56+02:00 Bug 41798: Update the URL to versions.ini in relprep.py. - - - - - 1 changed file: - tools/relprep.py Changes: ===================================== tools/relprep.py ===================================== @@ -412,9 +412,7 @@ class ReleasePreparation: def update_tor(self): logger.info("Updating Tor") databag = configparser.ConfigParser() - r = requests.get( - "https://gitlab.torproject.org/tpo/web/tpo/-/raw/main/databags/versions.ini" - ) + r = requests.get("https://www.torproject.org/download/versions.ini") r.raise_for_status() databag.read_string(r.text) tor_stable = databag["tor-stable"]["version"] View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41798: Update the URL to versions.ini in relprep.py.
by Pier Angelo Vendrame (@pierov) 13 May '26

13 May '26
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 44f17fcb by Pier Angelo Vendrame at 2026-05-13T08:42:15+02:00 Bug 41798: Update the URL to versions.ini in relprep.py. - - - - - 1 changed file: - tools/relprep.py Changes: ===================================== tools/relprep.py ===================================== @@ -411,9 +411,7 @@ class ReleasePreparation: def update_tor(self): logger.info("Updating Tor") databag = configparser.ConfigParser() - r = requests.get( - "https://gitlab.torproject.org/tpo/web/tpo/-/raw/main/databags/versions.ini" - ) + r = requests.get("https://www.torproject.org/download/versions.ini") r.raise_for_status() databag.read_string(r.text) tor_stable = databag["tor-stable"]["version"] View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-bundle-testsuite][main] Bug 40106: Pass sha256sums url as input to nightly pipelines
by brizental (@brizental) 12 May '26

12 May '26
brizental pushed to branch main at The Tor Project / Applications / tor-browser-bundle-testsuite Commits: 300fc8db by Beatriz Rizental at 2026-05-12T13:07:51-03:00 Bug 40106: Pass sha256sums url as input to nightly pipelines - - - - - 2 changed files: - .gitlab/scripts/before_script.py - tools/trigger-test-pipeline.py Changes: ===================================== .gitlab/scripts/before_script.py ===================================== @@ -42,6 +42,7 @@ def extract_tar(tar_path: Path, dest_dir: Path) -> None: def check_sha256sums_url(sha256sums_url: str) -> None: if not sha256sums_url: + print("No sha256sums URL provided. Skipping check.") return for attempt in range(SPECULATIVE_DOWNLOAD_RETRY_ATTEMPTS): ===================================== tools/trigger-test-pipeline.py ===================================== @@ -100,6 +100,7 @@ def build_inputs(step_name: str, publish_url: str, publish_dir: str) -> dict[str input_prefix = f"{'debian' if platform == 'linux' else platform}_{architecture}" inputs = { "mozharness_url": f"{artifacts_url}/mozharness.zip", + f"{input_prefix}_sha256sums_url": f"{publish_url}/{publish_dir}/sha256sums-unsigned-build.txt", f"{input_prefix}_installer_url": f"{publish_url}/{publish_dir}/{installer}", f"{input_prefix}_artifacts_url": artifacts_url, } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-bundle-testsuite][main] Bug 40104: Always assume SETUP_ANDROID_SDK env var is set
by brizental (@brizental) 11 May '26

11 May '26
brizental pushed to branch main at The Tor Project / Applications / tor-browser-bundle-testsuite Commits: dc363581 by Beatriz Rizental at 2026-05-11T09:57:26-03:00 Bug 40104: Always assume SETUP_ANDROID_SDK env var is set We were checking if this variable existed in the environment as a truthy value, but that was causing false positives. Now we actually check the specific value of the variable. Hopefully that fixes it. - - - - - 1 changed file: - .gitlab/scripts/before_script.py Changes: ===================================== .gitlab/scripts/before_script.py ===================================== @@ -155,7 +155,7 @@ def before_script( minidump_stackwalk_url: str, minidump_stackwalk_sha256: str, moz_fetches_dir: str, - sha256sums_url: str = "", + sha256sums_url: str, setup_android: bool = False, ) -> None: check_sha256sums_url(sha256sums_url) @@ -170,10 +170,10 @@ def before_script( if __name__ == "__main__": before_script( - mozharness_url=os.environ["MOZHARNESS_URL"], - minidump_stackwalk_url=os.environ["MINIDUMP_STACKWALK_URL"], + mozharness_url=os.environ.get("MOZHARNESS_URL", ""), + minidump_stackwalk_url=os.environ.get("MINIDUMP_STACKWALK_URL", ""), minidump_stackwalk_sha256=os.environ.get("MINIDUMP_STACKWALK_SHA256", ""), - moz_fetches_dir=os.environ["MOZ_FETCHES_DIR"], + moz_fetches_dir=os.environ.get("MOZ_FETCHES_DIR", ""), sha256sums_url=os.environ.get("SHA256SUMS_URL", ""), - setup_android="SETUP_ANDROID_SDK" in os.environ, + setup_android=os.environ.get("SETUP_ANDROID_SDK", "") == "1", ) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-15.0] Bug 41781: Fix clean section in rbm.local.conf.example
by boklm (@boklm) 08 May '26

08 May '26
boklm pushed to branch maint-15.0 at The Tor Project / Applications / tor-browser-build Commits: d4045877 by Nicolas Vigier at 2026-05-08T10:35:24+02:00 Bug 41781: Fix clean section in rbm.local.conf.example - - - - - 1 changed file: - rbm.local.conf.example Changes: ===================================== rbm.local.conf.example ===================================== @@ -72,29 +72,43 @@ var: ### branches and build targets you are using, to compute the list of ### files that should be kept. ### - ### If you only do alpha builds for all platforms, you can use the - ### following configuration: + ### If you only do Tor Browser and Mullvad Browser alpha builds for all + ### platforms, you can use the following configuration: #clean: # HEAD: # - project: release # target: # - alpha - # - torbrowser-all + # - browser-all + # - torbrowser + # - project: release + # target: + # - alpha + # - browser-all + # - mullvadbrowser # - ### If you are doing 'release' builds in the maint-7.0 branch and - ### 'alpha' builds in the main branch, you can use the following - ### configuration: + ### If you are doing Tor Browser 'release' builds in the maint-15.0 + ### branch and 'alpha' builds in the main branch, you can use the + ### following configuration: #clean: # main: # - project: release # target: # - alpha - # - torbrowser-all - # maint-7.0: + # - browser-all + # - torbrowser + # maint-15.0: # - project: release # target: # - release - # - torbrowser-all + # - browser-all + # - torbrowser + # + ### If you are doing Tor Browser and Mullvad Browser builds, you can + ### duplicate the projects listed, replacing the `torbrowser` target + ### with `mullvadbrowser`, in order to avoid removal of files specific + ### to Mullvad Browser. This will however duplicate the time to run the + ### cleaning script. targets: View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] 6 commits: release: new version, 15.0.13 (linux-i686)
by morgan (@morgan) 08 May '26

08 May '26
morgan pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: f91a2f48 by Morgan at 2026-05-07T22:11:35+00:00 release: new version, 15.0.13 (linux-i686) - - - - - e29923a3 by Morgan at 2026-05-07T22:11:35+00:00 release: new version, 15.0.13 (linux-x86_64) - - - - - 4bf47c7d by Morgan at 2026-05-07T22:11:35+00:00 release: new version, 15.0.13 (macos) - - - - - 12a55494 by Morgan at 2026-05-07T22:11:35+00:00 release: new version, 15.0.13 (windows-i686) - - - - - 1dd78ce7 by Morgan at 2026-05-07T22:11:35+00:00 release: new version, 15.0.13 (windows-x86_64) - - - - - 8f82b827 by Morgan at 2026-05-07T22:11:35+00:00 release: new version, 15.0.13 - - - - - 35 changed files: - update_3/release/download-android-aarch64.json - update_3/release/download-android-armv7.json - update_3/release/download-android-x86.json - update_3/release/download-android-x86_64.json - update_3/release/download-linux-i686.json - update_3/release/download-linux-x86_64.json - update_3/release/download-macos.json - update_3/release/download-windows-i686.json - update_3/release/download-windows-x86_64.json - update_3/release/downloads.json - update_3/release/linux-i686/.htaccess - update_3/release/linux-i686/update-15.0.10-15.0.12-linux-i686.xml → update_3/release/linux-i686/update-15.0.10-15.0.13-linux-i686.xml - update_3/release/linux-i686/update-15.0.11-15.0.12-linux-i686.xml → update_3/release/linux-i686/update-15.0.11-15.0.13-linux-i686.xml - update_3/release/linux-i686/update-15.0.9-15.0.12-linux-i686.xml → update_3/release/linux-i686/update-15.0.12-15.0.13-linux-i686.xml - update_3/release/linux-i686/update-15.0.12-linux-i686.xml → update_3/release/linux-i686/update-15.0.13-linux-i686.xml - update_3/release/linux-x86_64/.htaccess - update_3/release/linux-x86_64/update-15.0.10-15.0.12-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.10-15.0.13-linux-x86_64.xml - update_3/release/linux-x86_64/update-15.0.11-15.0.12-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.11-15.0.13-linux-x86_64.xml - update_3/release/linux-x86_64/update-15.0.9-15.0.12-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.12-15.0.13-linux-x86_64.xml - update_3/release/linux-x86_64/update-15.0.12-linux-x86_64.xml → update_3/release/linux-x86_64/update-15.0.13-linux-x86_64.xml - update_3/release/macos/.htaccess - update_3/release/macos/update-15.0.10-15.0.12-macos.xml → update_3/release/macos/update-15.0.10-15.0.13-macos.xml - update_3/release/macos/update-15.0.9-15.0.12-macos.xml → update_3/release/macos/update-15.0.11-15.0.13-macos.xml - update_3/release/macos/update-15.0.11-15.0.12-macos.xml → update_3/release/macos/update-15.0.12-15.0.13-macos.xml - update_3/release/macos/update-15.0.12-macos.xml → update_3/release/macos/update-15.0.13-macos.xml - update_3/release/windows-i686/.htaccess - update_3/release/windows-i686/update-15.0.10-15.0.12-windows-i686.xml → update_3/release/windows-i686/update-15.0.10-15.0.13-windows-i686.xml - update_3/release/windows-i686/update-15.0.11-15.0.12-windows-i686.xml → update_3/release/windows-i686/update-15.0.11-15.0.13-windows-i686.xml - update_3/release/windows-i686/update-15.0.9-15.0.12-windows-i686.xml → update_3/release/windows-i686/update-15.0.12-15.0.13-windows-i686.xml - update_3/release/windows-i686/update-15.0.12-windows-i686.xml → update_3/release/windows-i686/update-15.0.13-windows-i686.xml - update_3/release/windows-x86_64/.htaccess - update_3/release/windows-x86_64/update-15.0.10-15.0.12-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.10-15.0.13-windows-x86_64.xml - update_3/release/windows-x86_64/update-15.0.11-15.0.12-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.11-15.0.13-windows-x86_64.xml - update_3/release/windows-x86_64/update-15.0.9-15.0.12-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.12-15.0.13-windows-x86_64.xml - update_3/release/windows-x86_64/update-15.0.12-windows-x86_64.xml → update_3/release/windows-x86_64/update-15.0.13-windows-x86_64.xml The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41793: Remove workaround in dmg2mar for old versions of 7z
by boklm (@boklm) 07 May '26

07 May '26
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 441b2dca by Nicolas Vigier at 2026-05-07T19:11:01+02:00 Bug 41793: Remove workaround in dmg2mar for old versions of 7z - - - - - 1 changed file: - tools/dmg2mar Changes: ===================================== tools/dmg2mar ===================================== @@ -114,34 +114,12 @@ sub convert_files { $file->{filename}); exit_error "Error extracting $file->{filename}: $err" unless $success; - # 7z does not currently extract file permissions from the dmg files - # so we also extract the old mar file to copy the permissions - # https://trac.torproject.org/projects/tor/ticket/20210 - my $tmpdir_oldmar = File::Temp->newdir(); - my $oldmar = getcwd . '/' . $output; - exit_error "Error extracting $output" - unless system('mar', '-C', $tmpdir_oldmar, '-x', $oldmar) == 0; - my $appdir = "$tmpdir/$appname/$appname.app"; - exit_error "Missing directory $appdir" unless -d $appdir; - my $wanted = sub { - my $file = $File::Find::name; - $file =~ s{^$appdir/}{}; - if (-f "$tmpdir_oldmar/$file") { - my (undef, undef, $mode) = stat("$tmpdir_oldmar/$file"); - chmod $mode, $File::Find::name; - return; - } - chmod 0644, $File::Find::name if -f $File::Find::name; - chmod 0755, $File::Find::name if -d $File::Find::name; - }; - find($wanted, $appdir); - unlink $output; local $ENV{MOZ_PRODUCT_VERSION} = $file->{version}; local $ENV{MAR_CHANNEL_ID} = $mar_channel_id; local $ENV{TMPDIR} = $tmpdir; (undef, $err, $success) = capture_exec('make_full_update.sh', '-q', - $output, $appdir); + $output, "$tmpdir/$appname/$appname.app"); exit_error "Error updating $output: $err" unless $success; exit_error "make_full_update.sh failed. $output was not created.\n$err" unless -f $output; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
  • ← Newer
  • 1
  • 2
  • 3
  • 4
  • 5
  • ...
  • 2043
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.