usr_sbin/grml-chroot: Fix a couple of shellcheck warnings
[grml-scripts.git] / Makefile
index 6e0dc8d..ac667b1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ all: codecheck spellcheck ## Run codecheck and spellcheck
 codecheck: shellcheck pythoncheck ## Run shellcheck and pythoncheck
 
 shellcheck: ## Run shellcheck
-       for shellfile in usr_bin/* usr_sbin/* usr_share/*; do head -1 "$${shellfile}" | grep -q "/bin/bash\|/bin/sh" && shellcheck "$${shellfile}"; done
+       for shellfile in $$(ls usr_bin/* usr_sbin/* usr_share/* | grep -v "iimage"); do head -1 "$${shellfile}" | grep -q "/bin/bash\|/bin/sh" && shellcheck -e SC1117 -x "$${shellfile}"; done
 
 .ONESHELL:
 pythoncheck: ## Run shellcheck