diff options
author | Andreas Kling <kling@serenityos.org> | 2020-03-25 16:30:03 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-03-25 16:30:58 +0100 |
commit | faa3bf195a14ce0882ef3c1764c7a08e04cbf762 (patch) | |
tree | 74ba8ba87fa8cbdfa97aa60cccb5bd0ac8778c19 | |
parent | fefc2665d6d5cc5a311b5e4ffe7d7c409fd18dae (diff) | |
download | serenity-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-x | Meta/lint-shell-scripts.sh | 1 |
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 { |