diff --git a/.evergreen/compile-unix.sh b/.evergreen/compile-unix.sh index 7591c3241..459642b6f 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 99457c07f..dc434c123 100644 --- a/.evergreen/config.yml +++ b/.evergreen/config.yml @@ -64,7 +64,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 MONGODB_BINARIES="$MONGODB_BINARIES" @@ -289,7 +288,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/download-mongodb.sh b/.evergreen/download-mongodb.sh index 26238667d..cc7d3457f 100755 --- a/.evergreen/download-mongodb.sh +++ b/.evergreen/download-mongodb.sh @@ -2,7 +2,6 @@ #For future use the feed to get full list of distros : http://downloads.mongodb.org/full.json -set -o xtrace # Write all commands first to stderr set -o errexit # Exit the script with error if any of the commands fail get_distro () diff --git a/.evergreen/make-docs.sh b/.evergreen/make-docs.sh index f61da5a4b..2bff9aa0a 100644 --- a/.evergreen/make-docs.sh +++ b/.evergreen/make-docs.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/make-release.sh b/.evergreen/make-release.sh index ef6e2af7e..e81187caa 100644 --- a/.evergreen/make-release.sh +++ b/.evergreen/make-release.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/run-atlas-proxy.sh b/.evergreen/run-atlas-proxy.sh index edfdb7bc9..35abb865b 100755 --- a/.evergreen/run-atlas-proxy.sh +++ b/.evergreen/run-atlas-proxy.sh @@ -28,7 +28,6 @@ # MONGODB_VERSION - version of MongoDB to download and use. For Atlas # Proxy, must be "3.4" or "latest". Defaults to "3.4". -set -o xtrace # Write all commands first to stderr set -o errexit # Exit the script with error if any of the commands fail MONGODB_VERSION=${MONGODB_VERSION:-"3.4"} diff --git a/.evergreen/run-orchestration.sh b/.evergreen/run-orchestration.sh index d969aad16..ed87d8e22 100755 --- a/.evergreen/run-orchestration.sh +++ b/.evergreen/run-orchestration.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/start-orchestration.sh b/.evergreen/start-orchestration.sh index 2197f2d40..e593b17ff 100644 --- a/.evergreen/start-orchestration.sh +++ b/.evergreen/start-orchestration.sh @@ -6,7 +6,6 @@ if [ "$#" -ne 1 ]; then exit 1 fi -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/stop-orchestration.sh b/.evergreen/stop-orchestration.sh index 5c01d1580..c30eeed5e 100755 --- a/.evergreen/stop-orchestration.sh +++ b/.evergreen/stop-orchestration.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 cd "$MONGO_ORCHESTRATION_HOME"