From 905214458f656c3f59167dc088e9a4f5d985756d Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Thu, 12 Oct 2023 16:23:59 +0200 Subject: [PATCH] plugins: sorry, typo --- Mk/plugins.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mk/plugins.mk b/Mk/plugins.mk index 7b96d0ec8..5fa657dad 100644 --- a/Mk/plugins.mk +++ b/Mk/plugins.mk @@ -304,7 +304,7 @@ lint-desc: check lint-shell: @for FILE in $$(find ${.CURDIR}/src -name "*.sh" -type f); do \ - if [ "$$(head $${FILE} | grep -c '^#!\/)" == "0" ]; then \ + if [ "$$(head $${FILE} | grep -c '^#!\/')" == "0" ]; then \ echo "Missing shebang in $${FILE}"; exit 1; \ fi; \ sh -n $${FILE} || exit 1; \