devops: fix --full command in FF which installs deps (#8878)

Broken since https://github.com/microsoft/playwright/pull/8049

Previously when doing `build.sh --full` it was installing deps + building. Currently when passing `--full` it does not install the deps before, since it tries to compile before.
This commit is contained in:
Max Schmitt 2021-09-13 17:01:35 +02:00 committed by GitHub
parent ec2cbad76f
commit 5953472899
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -102,7 +102,6 @@ if [[ $1 != "--juggler" ]]; then
echo "-- Using cbindgen v${CBINDGEN_VERSION}"
cargo install cbindgen --version "${CBINDGEN_VERSION}"
fi
./mach build
fi
if [[ $1 == "--full" || $2 == "--full" ]]; then
@ -121,6 +120,8 @@ fi
if [[ $1 == "--juggler" ]]; then
./mach build faster
else
./mach build
fi
if [[ "$(uname)" == "Darwin" ]]; then

View File

@ -102,7 +102,6 @@ if [[ $1 != "--juggler" ]]; then
echo "-- Using cbindgen v${CBINDGEN_VERSION}"
cargo install cbindgen --version "${CBINDGEN_VERSION}"
fi
./mach build
fi
if [[ $1 == "--full" || $2 == "--full" ]]; then
@ -121,6 +120,8 @@ fi
if [[ $1 == "--juggler" ]]; then
./mach build faster
else
./mach build
fi
if [[ "$(uname)" == "Darwin" ]]; then