mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-27 23:27:11 +01:00
13 lines
307 B
Bash
13 lines
307 B
Bash
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
||
|
. "$DIR/prelude.sh"
|
||
|
|
||
|
set -o errexit
|
||
|
set -o verbose
|
||
|
|
||
|
cd src
|
||
|
|
||
|
activate_venv
|
||
|
base_revision="$(git merge-base ${revision} HEAD)"
|
||
|
echo "Base patch revision: $base_revision"
|
||
|
REVISION=$base_revision $python evergreen/lint_fuzzer_sanity_patch.py
|