mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-22 13:07:39 +01:00
12 lines
268 B
Bash
12 lines
268 B
Bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
cd src/jstestfuzz
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
if [ -f "../minimizer-outputs.json" ]; then
|
|
eval ./src/scripts/npm_run.sh ${npm_command} -- -j "../minimizer-outputs.json"
|
|
fi
|