Skip to content

Commit

Permalink
chore: fix bash syntax error in node integration
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed Jun 7, 2023
1 parent e722439 commit 03aaa78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion scripts/template-oss/node-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 03aaa78

Please sign in to comment.