This is an automated email from the git hooks/post-receive script.
boklm pushed a commit to branch main in repository tor-browser-bundle-testsuite.
commit 73c6fcffcd3d8d09d605d31dcc52af0e2c010621 Author: Nicolas Vigier boklm@torproject.org AuthorDate: Thu Nov 10 10:13:24 2022 +0100
Bug 40065: Archive multi-locale and base-browser builds
Archive the `ALL` bundles instead of `en-US`, since we now do multi-locale bundles.
We also archive base-browser builds. --- tools/tb-build-01-start-nightly-build | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/tools/tb-build-01-start-nightly-build b/tools/tb-build-01-start-nightly-build index 460ec35..d7431df 100755 --- a/tools/tb-build-01-start-nightly-build +++ b/tools/tb-build-01-start-nightly-build @@ -41,10 +41,13 @@ then find "$dir" -maxdepth 1 ( \ -name '*.txt' \ -o -name '*.asc' \ - -o -name 'torbrowser-install-*_en-US.exe' \ - -o -name 'TorBrowser-*_en-US.dmg' \ - -o -name 'tor-browser-linux*_en-US.tar.xz' \ + -o -name 'torbrowser-install-*_ALL.exe' \ + -o -name 'TorBrowser-*_ALL.dmg' \ + -o -name 'tor-browser-linux*_ALL.tar.xz' \ -o -name '*-multi-qa.apk' \ + -o -name 'basebrowser-install-*_ALL.exe' \ + -o -name 'BaseBrowser-*_ALL.dmg' \ + -o -name 'base-browser-linux*_ALL.tar.xz' \ ) \ -a -execdir cp -a {} "$dname" ; done