From 03aaa78eb5d3122d991c4bc057aa6de829c83139 Mon Sep 17 00:00:00 2001 From: Luke Karrys Date: Wed, 7 Jun 2023 11:32:21 -0700 Subject: [PATCH] chore: fix bash syntax error in node integration --- .github/workflows/node-integration.yml | 2 +- scripts/template-oss/node-integration.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node-integration.yml b/.github/workflows/node-integration.yml index 69ef2ce38dc44..64d7894f4934d 100644 --- a/.github/workflows/node-integration.yml +++ b/.github/workflows/node-integration.yml @@ -489,7 +489,7 @@ jobs: env: ${{ matrix.env }} run: | EXIT=1 - if [[ "${{ steps.command.outcome }}" == "success" || "${{ matrix.flaky }}" == "true" || "${{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly"]]; then + if [[ "${{ steps.command.outcome }}" == "success" || "${{ matrix.flaky }}" == "true" || "${{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly" ]]; then EXIT=0 fi exit $EXIT diff --git a/scripts/template-oss/node-integration.yml b/scripts/template-oss/node-integration.yml index 0edf91eb0d51f..4513ab0e43d72 100644 --- a/scripts/template-oss/node-integration.yml +++ b/scripts/template-oss/node-integration.yml @@ -487,7 +487,7 @@ jobs: env: $\{{ matrix.env }} run: | EXIT=1 - if [[ "$\{{ steps.command.outcome }}" == "success" || "$\{{ matrix.flaky }}" == "true" || "$\{{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly"]]; then + if [[ "$\{{ steps.command.outcome }}" == "success" || "$\{{ matrix.flaky }}" == "true" || "$\{{ matrix.knownFailure }}" == "true" || $NODE_VERSION == "nightly" ]]; then EXIT=0 fi exit $EXIT