V1.01.192.2025.06.06

Signed-off-by: Marc S. Weidner <msw@coresecret.dev>
This commit is contained in:
2025-06-06 18:33:57 +02:00
parent 1e6b128a57
commit 15b57ae91f
3 changed files with 12 additions and 10 deletions
+8 -6
View File
@@ -127,14 +127,16 @@ jobs:
#
# We capture:
# - All files '*.sh', '*.rfc.xml'
# - All files whose first line begins with #! (shebang)
# - All files whose first line begins with "#!" (shebang)
# -------------------------------
mapfile -t files_to_check < <(
find . -type f \( \
-iname '*.sh' -o \
-iname '*.rfc.xml' -o \
-exec grep -Iq '^#!' {} \; \
\) -print
find . \
-path './.git' -prune -o \
-type f \( \
-iname '*.sh' -o \
-iname '*.rfc.xml' -o \
-exec grep -Iq '^#!' {} \; \
\) -print
)
# -------------------------------