Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
genehack committed Jun 7, 2024
1 parent 6e36ad3 commit 7f910e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actions/run-nextstrain-ci-build/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7f910e6

Please sign in to comment.