From 2ff2998acebbbd398726419b2a0c07dca256ddaa Mon Sep 17 00:00:00 2001 From: Sanket Dharwadkar Date: Wed, 15 Mar 2023 11:49:47 -0700 Subject: [PATCH] fix: s3 CLI command fix --- scripts/run-integration-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run-integration-tests.sh b/scripts/run-integration-tests.sh index b27c3667cc..e58b2c4e91 100755 --- a/scripts/run-integration-tests.sh +++ b/scripts/run-integration-tests.sh @@ -32,7 +32,7 @@ if [ -e "${CONFIG_TARGET_PATH}" ]; then echo "Already present; not overwriting!" else echo "Not present; checking if present in S3" - aws s3api head-object --bucket $DEPLOYMENT_BUCKET --key "integration-test/$ENV_NAME.yml" --no-cli-pager --region $REGION || TEST_CONFIG_EXISTS=false + aws s3api head-object --bucket $DEPLOYMENT_BUCKET --key "integration-test/$ENV_NAME.yml" --region $REGION || TEST_CONFIG_EXISTS=false if [ "$TEST_CONFIG_EXISTS" == true ]; then echo "Test config found! Downloading from ${CONFIG_S3_PATH}"