From 7f910e6c7d3d475500b063e4861a26b63c168cb8 Mon Sep 17 00:00:00 2001 From: John SJ Anderson Date: Fri, 7 Jun 2024 16:20:16 -0700 Subject: [PATCH] Fix linting error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This error slipped in on a branch where the shellcheck lint was running, but got merged to `master` _after_ the shellcheck lint fix was applied there — so `master`s linting broke. This is a trivially correct change, so I'm applying and pushing to `master`. --- actions/run-nextstrain-ci-build/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/run-nextstrain-ci-build/action.yaml b/actions/run-nextstrain-ci-build/action.yaml index 66cf141..d647307 100644 --- a/actions/run-nextstrain-ci-build/action.yaml +++ b/actions/run-nextstrain-ci-build/action.yaml @@ -39,7 +39,7 @@ runs: else echo "Skipping $DIR build due to one or more missing files." for i in nextstrain-pathogen.yaml "$DIR"/Snakefile "$DIR"/build-configs/ci/config.yaml; do - [[ -f $i ]] || echo missing $i + [[ -f $i ]] || echo missing "$i" done fi shell: bash