Skip to content

Commit f523abe

Browse files
authored
Merge pull request #430 from doringeman/make-validate
feat: exclude git submodules from shellcheck validation
2 parents 1703c98 + ffeb5e7 commit f523abe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ test-docker-ce-installation:
8282
BASE_IMAGE=$(BASE_IMAGE) scripts/test-docker-ce-installation.sh
8383

8484
validate:
85-
find . -type f -name "*.sh" | grep -v pkg/go-containerregistry | xargs shellcheck
85+
find . -type f -name "*.sh" | grep -v "pkg/go-containerregistry\|llamacpp/native/vendor" | xargs shellcheck
86+
@echo "✓ Shellcheck validation passed!"
8687

8788
# Build Docker image
8889
docker-build:

0 commit comments

Comments
 (0)