From acb75460bc38a250f92226cf0103800858d3a4b6 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 15 Dec 2021 11:12:44 -0800 Subject: [PATCH] devops(firefox): fix packaging of mozilla-release (#10949) `MOZ_AUTOMATION` env variable requires us to set a bunch of other variables to package the build. --- browser_patches/firefox/archive.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/browser_patches/firefox/archive.sh b/browser_patches/firefox/archive.sh index 5b2af282d3..cb64aeb0e5 100755 --- a/browser_patches/firefox/archive.sh +++ b/browser_patches/firefox/archive.sh @@ -40,6 +40,8 @@ OBJ_FOLDER="${FF_CHECKOUT_PATH}/obj-build-playwright" cd "${FF_CHECKOUT_PATH}" +export MH_BRANCH=mozilla-release +export MOZ_BUILD_DATE=$(date +%Y%m%d%H%M%S) if [[ "$2" == "--linux-arm64" ]]; then CMD_STRIP=/usr/bin/aarch64-linux-gnu-strip ./mach package else