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

SERVER-58682: Ensure check_todo no-ops in the waterfall

This commit is contained in:
David Bradford 2021-08-04 14:51:08 -04:00 committed by Evergreen Agent
parent 29e7b74235
commit 871a315211

View File

@ -11,7 +11,7 @@ set -o errexit
# Since `commit_message` is an evergreen expansion, we need a way to ensure we
# properly deal with any special characters that could cause issues (like "). To
# do this, we will write it out to a file, then read that file into a variable.
if [ "${is_commit_queue}" = "true" ]; then
if [ "${is_commit_queue}" == "true" ]; then
cat > commit_message.txt << END_OF_COMMIT_MSG
${commit_message}
END_OF_COMMIT_MSG
@ -20,6 +20,6 @@ END_OF_COMMIT_MSG
rm commit_message.txt
$python buildscripts/todo_check.py --commit-message "$commit_message_content"
else
elif [ "${is_patch}" == "true" ]; then
$python buildscripts/todo_check.py --patch-build ${version_id}
fi