From 9b488f5a65ea18afad2950649013f7b8236ad5b8 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 15 Dec 2021 17:14:08 -0800 Subject: [PATCH] devops(firefox): do not bootstrap firefox-release ever on MacOS (#10960) References #10759 --- browser_patches/firefox/build.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/browser_patches/firefox/build.sh b/browser_patches/firefox/build.sh index 5548e96b27..b0f320afd8 100755 --- a/browser_patches/firefox/build.sh +++ b/browser_patches/firefox/build.sh @@ -89,11 +89,9 @@ if [[ $1 != "--juggler" ]]; then fi if [[ $1 == "--full" || $2 == "--full" ]]; then - if [[ "$(uname)" == "Darwin" || "$(uname)" == "Linux" ]]; then - SHELL=/bin/sh ./mach --no-interactive bootstrap --application-choice=browser - fi if [[ "$(uname)" == "Linux" ]]; then echo "ac_add_options --enable-bootstrap" >> .mozconfig + SHELL=/bin/sh ./mach --no-interactive bootstrap --application-choice=browser fi if [[ ! -z "${WIN32_REDIST_DIR}" ]]; then # Having this option in .mozconfig kills incremental compilation.