summaryrefslogtreecommitdiff
path: root/evergreen/lint_fuzzer_sanity_all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'evergreen/lint_fuzzer_sanity_all.sh')
-rw-r--r--evergreen/lint_fuzzer_sanity_all.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/evergreen/lint_fuzzer_sanity_all.sh b/evergreen/lint_fuzzer_sanity_all.sh
index f8a4094e3a3..2351091722e 100644
--- a/evergreen/lint_fuzzer_sanity_all.sh
+++ b/evergreen/lint_fuzzer_sanity_all.sh
@@ -6,11 +6,9 @@ cd src
set -o pipefail
set -o verbose
-add_nodejs_to_path
-
# Run parse-jsfiles on 50 files at a time with 32 processes in parallel.
# Skip javascript files in third_party directory
-find "$PWD/jstests" "$PWD/src/mongo/db/modules/enterprise" -path "$PWD/jstests/third_party" -prune -o -name "*.js" -print | xargs -P 32 -L 50 npm run --prefix jstestfuzz parse-jsfiles -- | tee lint_fuzzer_sanity.log
+find "$PWD/jstests" "$PWD/src/mongo/db/modules/enterprise" -path "$PWD/jstests/third_party" -prune -o -name "*.js" -print | xargs -P 32 -L 50 ./jstestfuzz/src/scripts/npm_run.sh --prefix jstestfuzz parse-jsfiles -- | tee lint_fuzzer_sanity.log
exit_code=$?
activate_venv