diff options
author | David Bradford <david.bradford@mongodb.com> | 2021-08-04 14:51:08 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-08-04 22:30:19 +0000 |
commit | 89adf254caf5f53e66adc76d2972ddd384e381c7 (patch) | |
tree | d852eb8345ecceb509a37576af97d9dba63d61d5 /evergreen | |
parent | 825faf8464829264a31eb54ae9662340275304b2 (diff) | |
download | mongo-89adf254caf5f53e66adc76d2972ddd384e381c7.tar.gz |
SERVER-58682: Ensure check_todo no-ops in the waterfall
(cherry picked from commit 871a31521172c15d5fe81ae5dac9bc42de4026ea)
Diffstat (limited to 'evergreen')
-rw-r--r-- | evergreen/todos_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/evergreen/todos_check.sh b/evergreen/todos_check.sh index 44ec7837219..42449d96081 100644 --- a/evergreen/todos_check.sh +++ b/evergreen/todos_check.sh @@ -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 |