From 2d038eff86a98b391267b12c3469497efc6930fb Mon Sep 17 00:00:00 2001 From: Roy Crihfield Date: Sun, 28 May 2023 17:52:56 +0800 Subject: [PATCH] fix script quoting --- scripts/integration-setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/integration-setup.sh b/scripts/integration-setup.sh index d0d2d181..6ec2c833 100755 --- a/scripts/integration-setup.sh +++ b/scripts/integration-setup.sh @@ -43,8 +43,8 @@ curl -s $bootnode_endpoint/geth.json | jq '.config' > $CONFIG_DIR/chain.json # Output vars if we are running on Github if [[ -n "$GITHUB_ENV" ]]; then echo ETH_CHAIN_ID="$(jq '.chainId' $CONFIG_DIR/chain.json)" >> "$GITHUB_ENV" - echo ETH_CHAIN_CONFIG="'$CONFIG_DIR/chain.json'" >> "$GITHUB_ENV" - echo ETH_HTTP_PATH="$(docker port test-fixturenet-eth-geth-1-1 8545 | head -1)" >> "$GITHUB_ENV" + echo ETH_CHAIN_CONFIG="$CONFIG_DIR/chain.json" >> "$GITHUB_ENV" + echo ETH_HTTP_PATH=$(docker port test-fixturenet-eth-geth-1-1 8545 | head -1) >> "$GITHUB_ENV" # Read a private key so we can send from a funded account - echo DEPLOYER_PRIVATE_KEY="$(curl -s $bootnode_endpoint/accounts.csv | head -1 | cut -d',' -f3)" >> "$GITHUB_ENV" + echo DEPLOYER_PRIVATE_KEY=$(curl -s $bootnode_endpoint/accounts.csv | head -1 | cut -d',' -f3) >> "$GITHUB_ENV" fi