0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-27 23:27:11 +01:00
mongodb/evergreen/monitor_build_status_run.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
406 B
Bash
Raw Normal View History

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}"