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"