From f5ca4b75b0053579486871eceb8f653b52681f6a Mon Sep 17 00:00:00 2001 From: ryardley Date: Tue, 28 Oct 2025 22:33:11 -0300 Subject: [PATCH] add concurrently to script --- examples/CRISP/scripts/dev.sh | 2 +- examples/CRISP/scripts/dev_cipher.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/CRISP/scripts/dev.sh b/examples/CRISP/scripts/dev.sh index 015b1ad889..e146ee53eb 100755 --- a/examples/CRISP/scripts/dev.sh +++ b/examples/CRISP/scripts/dev.sh @@ -29,7 +29,7 @@ cleanup() { trap cleanup INT TERM -concurrently \ +pnpm concurrently \ -ks first \ --names "ANVIL,DEPLOY,NODES" \ --prefix-colors "blue,green,yellow" \ diff --git a/examples/CRISP/scripts/dev_cipher.sh b/examples/CRISP/scripts/dev_cipher.sh index 65631343e6..9f3dc7f5cf 100755 --- a/examples/CRISP/scripts/dev_cipher.sh +++ b/examples/CRISP/scripts/dev_cipher.sh @@ -15,9 +15,9 @@ enclave nodes up -v & sleep 2 -CN1=$(cat ./enclave.config.yaml | yq '.nodes.cn1.address') -CN2=$(cat ./enclave.config.yaml | yq '.nodes.cn2.address') -CN3=$(cat ./enclave.config.yaml | yq '.nodes.cn3.address') +CN1=$(cat ./enclave.config.yaml | yq -r '.nodes.cn1.address') +CN2=$(cat ./enclave.config.yaml | yq -r '.nodes.cn2.address') +CN3=$(cat ./enclave.config.yaml | yq -r '.nodes.cn3.address') # Add ciphernodes using variables from config.sh pnpm ciphernode:add --ciphernode-address "$CN1" --network "localhost"