From b252e116f659cf4a3e41f346234cc5720b57e46c Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Fri, 30 Apr 2021 22:37:10 -0400 Subject: [PATCH] != instead of -ne --- .github/workflows/use-action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/use-action.yaml b/.github/workflows/use-action.yaml index 1a683b5..e17752f 100644 --- a/.github/workflows/use-action.yaml +++ b/.github/workflows/use-action.yaml @@ -45,7 +45,7 @@ jobs: KO_DOCKER_REPO: already-set - name: Check pre-set KO_DOCKER_REPO run: | - if [[ ${KO_DOCKER_REPO} -ne "already-set"]]; then + if [[ "${KO_DOCKER_REPO}" != "already-set"]]; then echo "${KO_DOCKER_REPO} != already-set" exit 1 fi