Skip to content

Commit

Permalink
devops: support --juggler argument for firefox/build.sh script (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov authored Jun 4, 2020
1 parent c03b39a commit 95ef71c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion browser_patches/firefox/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@ fi
OBJ_FOLDER="obj-build-playwright"
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/${OBJ_FOLDER}" >> .mozconfig

./mach build
if [[ $1 == "--juggler" ]]; then
./mach build faster
else
./mach build
fi

if [[ "$(uname)" == "Darwin" ]]; then
node ../install-preferences.js $PWD/${OBJ_FOLDER}/dist
Expand Down

0 comments on commit 95ef71c

Please sign in to comment.