From 46be56ad329324ed0e3b0f277d59b6e008519da1 Mon Sep 17 00:00:00 2001 From: Jonathan Abrahams Date: Mon, 4 Dec 2017 10:10:46 -0500 Subject: SERVER-32071 Fix download on Windows of NotMyFault --- etc/evergreen.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'etc') 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 \ -- cgit v1.2.1