From 82e8c7226dd094c294451147c273d6a96214604a Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Sat, 10 Apr 2021 00:36:24 -0500 Subject: [PATCH] devops: fix firefox-stable build script (#6175) The old mach used `--no-interactive` flag at a different place. --- browser_patches/firefox-stable/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser_patches/firefox-stable/build.sh b/browser_patches/firefox-stable/build.sh index 6e42210f90..8699ef51b0 100755 --- a/browser_patches/firefox-stable/build.sh +++ b/browser_patches/firefox-stable/build.sh @@ -87,7 +87,7 @@ if [[ $1 == "--full" || $2 == "--full" ]]; then rm -rf "$HOME/.mozbuild/node" mv node "$HOME/.mozbuild/" elif [[ "$(uname)" == "Darwin" || "$(uname)" == "Linux" ]]; then - SHELL=/bin/sh ./mach --no-interactive bootstrap --application-choice=browser --no-system-changes + SHELL=/bin/sh ./mach bootstrap --no-interactive --application-choice=browser --no-system-changes fi if [[ ! -z "${WIN32_REDIST_DIR}" ]]; then # Having this option in .mozconfig kills incremental compilation.