diff --git a/.evergreen/compile-unix.sh b/.evergreen/compile-unix.sh index 8d593b90c..1bc805f52 100755 --- a/.evergreen/compile-unix.sh +++ b/.evergreen/compile-unix.sh @@ -1,5 +1,4 @@ #!/bin/sh -set -o xtrace # Write all commands first to stderr set -o errexit # Exit the script with error if any of the commands fail # Supported/used environment variables: diff --git a/.evergreen/compile-windows.sh b/.evergreen/compile-windows.sh index 33349bb34..10d207276 100755 --- a/.evergreen/compile-windows.sh +++ b/.evergreen/compile-windows.sh @@ -1,6 +1,5 @@ #!/bin/sh set -o igncr # Ignore CR in this script -set -o xtrace # Write all commands first to stderr set -o errexit # Exit the script with error if any of the commands fail # Supported/used environment variables: diff --git a/.evergreen/compile.sh b/.evergreen/compile.sh index 8b7820e99..575ff1bbc 100755 --- a/.evergreen/compile.sh +++ b/.evergreen/compile.sh @@ -1,5 +1,4 @@ #!/bin/sh -set -o xtrace # Write all commands first to stderr set -o errexit # Exit the script with error if any of the commands fail diff --git a/.evergreen/config.yml b/.evergreen/config.yml index a51f78628..5324a12d7 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -86,7 +86,6 @@ functions: PROJECT_DIRECTORY: "$PROJECT_DIRECTORY" PREPARE_SHELL: | set -o errexit - set -o xtrace export DRIVERS_TOOLS="$DRIVERS_TOOLS" export MONGO_ORCHESTRATION_HOME="$MONGO_ORCHESTRATION_HOME" export PROJECT_ORCHESTRATION_HOME="$PROJECT_ORCHESTRATION_HOME" @@ -159,7 +158,7 @@ functions: - command: shell.exec params: continue_on_err: true - script: "set -o xtrace && rm -rf ${PROJECT_DIRECTORY}" + script: "rm -rf ${PROJECT_DIRECTORY}" - command: s3.get params: aws_key: ${aws_key} @@ -171,7 +170,7 @@ functions: params: continue_on_err: true # EVG-1105: Use s3.get extract_to: ./ - script: "set -o xtrace && cd .. && rm -rf ${PROJECT_DIRECTORY} && mkdir ${PROJECT_DIRECTORY}/ && tar xf build.tar.gz -C ${PROJECT_DIRECTORY}/" + script: "cd .. && rm -rf ${PROJECT_DIRECTORY} && mkdir ${PROJECT_DIRECTORY}/ && tar xf build.tar.gz -C ${PROJECT_DIRECTORY}/" "exec compile script" : - command: shell.exec @@ -454,7 +453,6 @@ tasks: type: test params: script: | - set -o xtrace . ${DRIVERS_TOOLS}/.evergreen/download-mongodb.sh || true get_distro || true echo $DISTRO diff --git a/.evergreen/run-ocsp-responder.sh b/.evergreen/run-ocsp-responder.sh index d295c3c46..41c5765c1 100644 --- a/.evergreen/run-ocsp-responder.sh +++ b/.evergreen/run-ocsp-responder.sh @@ -24,7 +24,6 @@ # Fail on any command returning a non-zero exit status. set -o errexit -set -o xtrace USE_DELEGATE=${USE_DELEGATE:-OFF} diff --git a/.evergreen/run-tests.sh b/.evergreen/run-tests.sh index f40b9a7f3..44d83a151 100755 --- a/.evergreen/run-tests.sh +++ b/.evergreen/run-tests.sh @@ -1,5 +1,4 @@ #!/bin/sh -set -o xtrace # Write all commands first to stderr set -o errexit # Exit the script with error if any of the commands fail # Supported/used environment variables: