From bfd91a146f0cba50eb8762d4d47e7356b3248beb Mon Sep 17 00:00:00 2001 From: David Daly Date: Wed, 31 Jan 2024 10:13:50 +0000 Subject: [PATCH] fix lint --- .github/workflows/ci-e2e.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-e2e.yml b/.github/workflows/ci-e2e.yml index a205f74..0ee4e2f 100644 --- a/.github/workflows/ci-e2e.yml +++ b/.github/workflows/ci-e2e.yml @@ -36,7 +36,7 @@ jobs: | jq '.workflow_runs[] | select(.name=="Publish Actions Package" and (.display_title | contains("${{ github.sha }}"))) | .status, .conclusion') # split the RESULT into an array - RESULT=($RESULT) + RESULT=("$RESULT") STATUS=$(echo "${RESULT[0]}" | sed -e 's/^"//' -e 's/"$//') CONCLUSION=$(echo "${RESULT[1]}" | sed -e 's/^"//' -e 's/"$//') if [ -z "$STATUS" ]; then