summaryrefslogtreecommitdiff
path: root/evergreen
diff options
context:
space:
mode:
authorDavid Bradford <david.bradford@mongodb.com>2021-09-07 12:31:17 -0400
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-09-08 15:52:32 +0000
commit307cc81f1af0d00312e0fa802373b92cb60a579f (patch)
tree826fa274d68017321215cfd5a4334a0b027f927a /evergreen
parent5b49130fbfdc190c76b5804a145ca3172a5c1f20 (diff)
downloadmongo-307cc81f1af0d00312e0fa802373b92cb60a579f.tar.gz
SERVER-59511: Improve error messages in validate_commit_message
Diffstat (limited to 'evergreen')
-rw-r--r--evergreen/commit_message_validate.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/evergreen/commit_message_validate.sh b/evergreen/commit_message_validate.sh
index cf2edcd2cf0..3d7825ae6e1 100644
--- a/evergreen/commit_message_validate.sh
+++ b/evergreen/commit_message_validate.sh
@@ -7,5 +7,7 @@ set -o verbose
set -o errexit
if [ "${is_commit_queue}" = "true" ]; then
activate_venv
- $python buildscripts/validate_commit_message.py ${version_id}
+ $python buildscripts/validate_commit_message.py \
+ --evg-config-file ./.evergreen.yml \
+ ${version_id}
fi