summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Abrahams <jonathan@mongodb.com>2017-12-04 10:10:46 -0500
committerJonathan Abrahams <jonathan@mongodb.com>2017-12-04 10:10:46 -0500
commit46be56ad329324ed0e3b0f277d59b6e008519da1 (patch)
tree039f56f301c2c62747dadc352ec6ab018d0f32e5
parentf57a8e4f62730fcbf497e406ba69c2b7c0527cb3 (diff)
downloadmongo-46be56ad329324ed0e3b0f277d59b6e008519da1.tar.gz
SERVER-32071 Fix download on Windows of NotMyFault
-rw-r--r--etc/evergreen.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 268be1f608a..37c272dfaea 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -1404,7 +1404,8 @@ functions:
exit 0
fi
# Install NotMyFault, used to crash Windows.
- cmds="curl -s -o ${windows_crash_zip} ${windows_crash_dl} | unzip ${windows_crash_zip} -d ${windows_crash_dir}"
+ cmds="curl -s -o ${windows_crash_zip} ${windows_crash_dl}"
+ cmds="$cmds; unzip -q ${windows_crash_zip} -d ${windows_crash_dir}"
cmds="$cmds; chmod +x ${windows_crash_dir}/*.exe"
ssh_connection_options="${ssh_identity} ${ssh_connection_options}"
${python|/opt/mongodbtoolchain/v2/bin/python2} buildscripts/remote_operations.py \