From f19b1f26cd76cff2e19161fac7b2e6936859c002 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 15 Apr 2026 17:27:30 +0200 Subject: [PATCH] fix: update shellcheck script to exclude Containerfile instead of Dockerfile Signed-off-by: Uwe Hermann --- shellcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shellcheck.sh b/shellcheck.sh index 45ea112..745c557 100755 --- a/shellcheck.sh +++ b/shellcheck.sh @@ -5,7 +5,7 @@ set -o pipefail ERRORS=() # find all executables and run `shellcheck` -for f in $(find . -type f -not -iwholename '*.git*' -not -name "Dockerfile" | sort -u); do +for f in $(find . -type f -not -iwholename '*.git*' -not -name "Containerfile" | sort -u); do if file "$f" | grep --quiet shell; then { shellcheck "$f" && echo "[OK]: sucessfully linted $f"