summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-03-25 16:30:03 +0100
committerAndreas Kling <kling@serenityos.org>2020-03-25 16:30:58 +0100
commitfaa3bf195a14ce0882ef3c1764c7a08e04cbf762 (patch)
tree74ba8ba87fa8cbdfa97aa60cccb5bd0ac8778c19
parentfefc2665d6d5cc5a311b5e4ffe7d7c409fd18dae (diff)
downloadserenity-faa3bf195a14ce0882ef3c1764c7a08e04cbf762.zip
Meta: Ignore the LibJS test runner script when linting
Making this work in the absence of bash is more cumbersome than simply skipping it at the moment.
-rwxr-xr-xMeta/lint-shell-scripts.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/Meta/lint-shell-scripts.sh b/Meta/lint-shell-scripts.sh
index ddb4ccf114..963a43a692 100755
--- a/Meta/lint-shell-scripts.sh
+++ b/Meta/lint-shell-scripts.sh
@@ -10,6 +10,7 @@ for f in $(find . -path ./Root -prune -o \
-path ./Ports -prune -o \
-path ./.git -prune -o \
-path ./Toolchain -prune -o \
+ -path ./Libraries/LibJS/Tests -prune -o \
-type f | sort -u); do
if file "$f" | grep --quiet shell; then
{