You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
397 B
14 lines
397 B
3 years ago
|
#!/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"
|