From 073a6e0613c58b5770dd6d91691247370c6e8539 Mon Sep 17 00:00:00 2001 From: Dan J Miller Date: Tue, 19 Apr 2022 11:13:47 -0230 Subject: [PATCH] Run main, flask and beta in sequence in generate-lavamoat-policies.sh (#14470) --- development/generate-lavamoat-policies.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/development/generate-lavamoat-policies.sh b/development/generate-lavamoat-policies.sh index a5a104a23..fe91aaeaf 100755 --- a/development/generate-lavamoat-policies.sh +++ b/development/generate-lavamoat-policies.sh @@ -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