This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch main in repository builders/tor-browser-build.
The following commit(s) were added to refs/heads/main by this push: new 68b62817 Bug 40694: aarch64 tor-expert-bundle for macOS is not exported as part of the browser build 68b62817 is described below
commit 68b6281730437d45e0cb918c0bd8108e3d079254 Author: Richard Pospesel richard@torproject.org AuthorDate: Fri Dec 2 11:32:45 2022 +0000
Bug 40694: aarch64 tor-expert-bundle for macOS is not exported as part of the browser build --- projects/browser/build | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/projects/browser/build b/projects/browser/build index 8cbbc20d..57544b46 100644 --- a/projects/browser/build +++ b/projects/browser/build @@ -377,6 +377,12 @@ cp $rootdir/[% c('input_files_by_name/firefox') %]/mar-tools-*.zip "$OUTDIR"/ # strip off trailing "$buildid.tar.gz" tor_expert_bundle_dest=${tor_expert_bundle_src:0:-14}.tar.gz cp $rootdir/[% c("input_files_by_name/tor-expert-bundle") %] "$OUTDIR"/$tor_expert_bundle_dest + [% IF c("var/macos_universal") %] + tor_expert_bundle_src="[% c('input_files_by_name/tor-expert-bundle-aarch64') %]" + # strip off trailing "$buildid.tar.gz" + tor_expert_bundle_dest=${tor_expert_bundle_src:0:-14}.tar.gz + cp $rootdir/[% c('input_files_by_name/tor-expert-bundle-aarch64') %] "$OUTDIR"/$tor_expert_bundle_dest + [% END -%] [% END -%] [% IF c("var/build_infos_json") -%] cp $rootdir/[% c('input_files_by_name/firefox') %]/build-infos.json "$OUTDIR"/build-infos-[% c("var/mar_osname") %].json
tor-commits@lists.torproject.org