diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2017-12-04 10:10:46 -0500 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2017-12-04 10:10:46 -0500 |
commit | 46be56ad329324ed0e3b0f277d59b6e008519da1 (patch) | |
tree | 039f56f301c2c62747dadc352ec6ab018d0f32e5 | |
parent | f57a8e4f62730fcbf497e406ba69c2b7c0527cb3 (diff) | |
download | mongo-46be56ad329324ed0e3b0f277d59b6e008519da1.tar.gz |
SERVER-32071 Fix download on Windows of NotMyFault
-rw-r--r-- | etc/evergreen.yml | 3 |
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 \ |