mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-25 20:02:58 +01:00
67a7483754
Co-authored-by: brad-decker <bhdecker84@gmail.com>
19 lines
573 B
Bash
Executable File
19 lines
573 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
extraArgs=()
|
|
if [[ $# -lt 1 ]]; then
|
|
extraArgs+=(-m 1)
|
|
fi
|
|
|
|
# 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 \
|
|
"${extraArgs[@]}" \
|
|
"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" |