From faa3bf195a14ce0882ef3c1764c7a08e04cbf762 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 25 Mar 2020 16:30:03 +0100 Subject: 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. --- Meta/lint-shell-scripts.sh | 1 + 1 file changed, 1 insertion(+) 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 { -- cgit v1.2.3