From f5b9645f8978689515f821b72d27b471e140e693 Mon Sep 17 00:00:00 2001 From: Balazs Czoma Date: Thu, 20 Jun 2024 09:33:30 -0400 Subject: [PATCH] escape fix --- .github/workflows/module-test-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/module-test-pipeline.yml b/.github/workflows/module-test-pipeline.yml index 37ea7aa..fffb0d4 100644 --- a/.github/workflows/module-test-pipeline.yml +++ b/.github/workflows/module-test-pipeline.yml @@ -29,7 +29,7 @@ jobs: if [ -n "$PRIVATE_PROVIDER_VERSION" ]; then echo "Using private provider version $PRIVATE_PROVIDER_VERSION" grep -rl 'source = "' . | xargs sed -i 's@source = ".*$@source = "app.terraform.io/SolaceDev/solacebroker"@g' - grep -rl 'version = "' . | xargs sed -i 's@ version = ".*$@ version = "${PRIVATE_PROVIDER_VERSION}"@g' + grep -rl 'version = "' . | xargs sed -i "s@ version = \".*$@ version = \"${PRIVATE_PROVIDER_VERSION}\"@g" fi - name: Test module from template on test broker