1
0
Fork 1
mirror of https://example.com synced 2024-11-22 06:26:39 +09:00

dev: add shellcheck to Makefile

This commit is contained in:
naskya 2024-01-10 12:08:13 +09:00
parent 350161974f
commit 5f1e30af80
Signed by: naskya
GPG key ID: 712D413B3A9FED5C

View file

@ -1,5 +1,15 @@
.PHONY: all
all: build_image
all: shellcheck build_image
.PHONY: shellcheck
shellcheck:
shellcheck --external-sources update.sh
shellcheck --external-sources neko/update/main.sh
shellcheck --external-sources neko/update/patch.sh
shellcheck --external-sources neko/update/container.sh
shellcheck --external-sources neko/update/native.sh
shellcheck --external-sources --exclude=SC2148 neko/update/utils
.PHONY: build_image