Remove bin/run-shellcheck

This commit is contained in:
0x1eef 2024-04-02 00:11:07 -03:00
parent 5ec66cbb4a
commit 9ed5d20f21

View file

@ -1,18 +0,0 @@
#!/bin/sh
run_shellcheck() {
files="$1"
for file in $files; do
if shellcheck "$file"; then
echo "OK: $file"
else
echo "ERROR: $file"
exit 1
fi;
done
}
run_shellcheck "bin/portzap"
run_shellcheck "libexec/portzap/install-file"
run_shellcheck "libexec/portzap/install-directory"
run_shellcheck "libexec/portzap/commands/*"
run_shellcheck "libexec/portzap/functions/*"