1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 01:47:00 +01:00

Run main, flask and beta in sequence in generate-lavamoat-policies.sh (#14470)

This commit is contained in:
Dan J Miller 2022-04-19 11:13:47 -02:30 committed by GitHub
parent e702da2194
commit 073a6e0613
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,6 @@ set -o pipefail
# Generate LavaMoat policies for the extension background script for each build
# type.
# ATTN: This may tax your device when running it locally.
concurrently --kill-others-on-fail -n main,beta,flask \
"WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only" \
"WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only --build-type beta" \
"WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only --build-type flask"
WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only &&
WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only --build-type beta &&
WRITE_AUTO_POLICY=1 yarn build scripts:prod --policy-only --build-type flask