]> git.proxmox.com Git - mirror_zfs.git/blobdiff - Makefile.am
Enable shellcheck to run for select scripts
[mirror_zfs.git] / Makefile.am
index e009212f4552013347703195d2e1dce8760bf129..2cd2aabc5ac3503a1933c39b88b62d9e0c6b9402 100644 (file)
@@ -47,11 +47,14 @@ cstyle:
 
 shellcheck:
        @if type shellcheck > /dev/null 2>&1; then \
-               (find ${top_srcdir} -type f -name '*.sh.in' -o -type f \
-                -name '*.sh'; find etc/init.d/zfs*.in -type f) | \
+               shellcheck --exclude=SC1090 --format gcc scripts/paxcheck.sh \
+                       scripts/zloop.sh \
+                       scripts/zfs-tests.sh \
+                       scripts/zfs.sh; \
+               (find cmd/zed/zed.d/*.sh -type f) | \
                 grep -v 'zfs-script-config' | \
                 while read file; do \
-                       shellcheck --format gcc "$$file"; \
+                       shellcheck --exclude=SC1090 --format gcc "$$file"; \
                 done; \
         fi