From df5d772a6d265ada9542884d7a87262c07c3399b Mon Sep 17 00:00:00 2001 From: srushti-patl Date: Mon, 4 Mar 2024 16:16:16 -0800 Subject: [PATCH] misc: Updating the delimiter to a single character. --- .github/workflows/test-uat-suite.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-uat-suite.yaml b/.github/workflows/test-uat-suite.yaml index 8fad32d6..ebcd89f6 100644 --- a/.github/workflows/test-uat-suite.yaml +++ b/.github/workflows/test-uat-suite.yaml @@ -38,7 +38,7 @@ jobs: - name: Setup Variables Files run: | - for secret_content in $(env | grep 'TEST_DATA_UAT_' | cut -d=f1); do + for secret_content in $(env | grep 'TEST_DATA_UAT_' | cut -d '=' -f1); do if [[ "$secret_content" == *"PORT_CONNECTION_PORT_ZSIDE"* ]]; then echo "$secret_content" > ./examples/port-2-port-connection/terraform.tfvars.json fi