mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-22 13:07:39 +01:00
18 lines
413 B
Bash
18 lines
413 B
Bash
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
set -evo pipefail
|
|
|
|
cd src/jstestfuzz
|
|
|
|
in_patch_build_flag=""
|
|
if [[ "${is_patch}" = "true" ]]; then
|
|
case "${npm_command}" in
|
|
agg-fuzzer | query-fuzzer)
|
|
in_patch_build_flag="--inPatchBuild"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
./src/scripts/npm_run.sh ${npm_command} -- ${jstestfuzz_vars} ${in_patch_build_flag} --branch ${branch_name}
|