mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
cfa71f3776
GitOrigin-RevId: 56309603a6e1d87c9caa8b78b3208104d9e76866
17 lines
406 B
Bash
17 lines
406 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
|
|
|
|
command_invocation="$python buildscripts/monitor_build_status/cli.py"
|
|
if [ "${is_patch}" != "true" ]; then
|
|
command_invocation="$command_invocation --notify"
|
|
fi
|
|
|
|
echo "Verbatim monitor_build_status invocation: ${command_invocation}"
|
|
eval "${command_invocation}"
|