File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -176,11 +176,12 @@ functions:
176176 silent : true
177177 working_dir : " src"
178178 script : |
179- # DO NOT ECHO WITH XTRACE (which PREPARE_SHELL does)
179+ ${PREPARE_SHELL}
180+ set +o xtrace
180181 SWIFT_VERSION=${SWIFT_VERSION} ATLAS_REPL='${ATLAS_REPL}' ATLAS_SHRD='${ATLAS_SHRD}' ATLAS_FREE='${ATLAS_FREE}' ATLAS_TLS11='${ATLAS_TLS11}' ATLAS_TLS12='${ATLAS_TLS12}' \
181182 ATLAS_REPL_SRV='${ATLAS_REPL_SRV}' ATLAS_SHRD_SRV='${ATLAS_SHRD_SRV}' ATLAS_FREE_SRV='${ATLAS_FREE_SRV}' ATLAS_TLS11_SRV='${ATLAS_TLS11_SRV}' ATLAS_TLS12_SRV='${ATLAS_TLS12_SRV}' \
182183 ATLAS_SERVERLESS='${ATLAS_SERVERLESS}' ATLAS_SERVERLESS_SRV='${ATLAS_SERVERLESS_SRV}' \
183- sh ${PROJECT_DIRECTORY}/.evergreen/run-atlas-tests.sh
184+ ${PROJECT_DIRECTORY}/.evergreen/run-atlas-tests.sh
184185
185186 " run serverless tests " :
186187 - command : shell.exec
@@ -198,7 +199,7 @@ functions:
198199 SINGLE_MONGOS_LB_URI="${SINGLE_ATLASPROXY_SERVERLESS_URI}" \
199200 MULTI_MONGOS_LB_URI="${MULTI_ATLASPROXY_SERVERLESS_URI}" \
200201 SWIFT_VERSION="${SWIFT_VERSION}" \
201- sh ${PROJECT_DIRECTORY}/.evergreen/run-serverless-tests.sh
202+ ${PROJECT_DIRECTORY}/.evergreen/run-serverless-tests.sh
202203
203204 " run ocsp test " :
204205 - command : shell.exec
Original file line number Diff line number Diff line change 1- #! /bin/sh
1+ #! /bin/bash
22set -o errexit # Exit the script with error if any of the commands fail
33
44# variables
You can’t perform that action at this time.
0 commit comments