boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
-
39a555dd
by Nicolas Vigier at 2026-03-25T12:24:51+01:00
-
d43aecc4
by Nicolas Vigier at 2026-03-25T12:29:33+01:00
1 changed file:
Changes:
| 1 | 1 | #!/bin/bash
|
| 2 | +#
|
|
| 3 | +# This script can be used to re-deploy update_responses files for a
|
|
| 4 | +# release that was already published.
|
|
| 5 | +#
|
|
| 2 | 6 | set -e
|
| 3 | 7 | SIGNING_PROJECTNAME=torbrowser
|
| 4 | 8 | script_dir=$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd)
|
| ... | ... | @@ -6,11 +10,7 @@ TBB_DIR="$script_dir/../.." |
| 6 | 10 | source "$script_dir/functions"
|
| 7 | 11 | source "$script_dir/set-config.update-responses"
|
| 8 | 12 | TOR_BROWSER_VERSION=$(rbm_showconf var/torbrowser_version)
|
| 9 | -TOR_BROWSER_LEGACY_VERSION=$(rbm_showconf var/torbrowser_legacy_version)
|
|
| 10 | -ESR_LEGACY_VERSION=$(rbm_showconf var/torbrowser_legacy_platform_version)
|
|
| 11 | 13 | echo "TOR_BROWSER_VERSION ${TOR_BROWSER_VERSION}"
|
| 12 | -echo "TOR_BROWSER_LEGACY_VERSION ${TOR_BROWSER_LEGACY_VERSION}"
|
|
| 13 | -echo "ESR_LEGACY_VERSION: ${ESR_LEGACY_VERSION}"
|
|
| 14 | 14 | read -p "Continue with update response for these versions (y/N) " -n 1 -r
|
| 15 | 15 | |
| 16 | 16 | echo
|
| ... | ... | @@ -34,7 +34,7 @@ rm -Rf update_3/release |
| 34 | 34 | tar -C update_3 -xf update-responses-release-${TOR_BROWSER_VERSION}.tar
|
| 35 | 35 | rm update-responses-release-${TOR_BROWSER_VERSION}.tar
|
| 36 | 36 | git add update_3/release
|
| 37 | -git commit -m "release: new version, ${TOR_BROWSER_LEGACY_VERSION}"
|
|
| 37 | +git commit -m "[redeploy] release: new version, ${TOR_BROWSER_VERSION}"
|
|
| 38 | 38 | git push
|
| 39 | 39 | |
| 40 | 40 | echo "Update responses commit, for you to review:"
|