From bcb3e59999cade4bcdbdc37393a469b0b1124baf Mon Sep 17 00:00:00 2001 From: Tuomo Tanskanen Date: Thu, 30 May 2024 15:31:44 +0300 Subject: [PATCH] shellcheck only files Make shellcheck consider only files. If branch name ended with .sh or .sh/something, it was found on the filesystem as something ending with .sh, and shellcheck picked it up, and linting failed obviously. Signed-off-by: Tuomo Tanskanen --- hack/shellcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/shellcheck.sh b/hack/shellcheck.sh index 70c27cb..1a324eb 100755 --- a/hack/shellcheck.sh +++ b/hack/shellcheck.sh @@ -7,7 +7,7 @@ CONTAINER_RUNTIME="${CONTAINER_RUNTIME:-podman}" if [ "${IS_CONTAINER}" != "false" ]; then TOP_DIR="${1:-.}" - find "${TOP_DIR}" -path ./vendor -prune -o -name '*.sh' -exec shellcheck -s bash {} \+ + find "${TOP_DIR}" -path ./vendor -prune -o -name '*.sh' -type f -exec shellcheck -s bash {} \+ else "${CONTAINER_RUNTIME}" run --rm \ --env IS_CONTAINER=TRUE \