mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
14 lines
397 B
Bash
14 lines
397 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -u
|
||
|
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 dist" \
|
||
|
"WRITE_AUTO_POLICY=1 yarn dist --build-type beta" \
|
||
|
"WRITE_AUTO_POLICY=1 yarn dist --build-type flask"
|