diff --git a/run_lslint.sh b/run_lslint.sh index 5cac4c1b9..6f7edcee9 100644 --- a/run_lslint.sh +++ b/run_lslint.sh @@ -5,7 +5,7 @@ set -o pipefail LSLINT_PATH=$1 FAILED=. -for file in **/*.lsl; do +for file in src/**/*.lsl; do echo "[>>] Linting $file..." | tee -a ./test.run.txt $1 "$file" 2>&1 | tee -a ./test.run.txt @@ -20,4 +20,4 @@ done if [ $FAILED != . ] ; then echo "[!!!] Linting failed on ${#FAILED} files - check the logs." exit ${#FAILED} -fi \ No newline at end of file +fi