Skip to content

Commit 027134d

Browse files
authored
PHPLIB-637 Remove xtrace from build scripts (#817)
1 parent 0202106 commit 027134d

11 files changed

+0
-12
lines changed

.evergreen/compile-unix.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
set -o xtrace # Write all commands first to stderr
32
set -o errexit # Exit the script with error if any of the commands fail
43

54
# Supported/used environment variables:

.evergreen/compile-windows.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/sh
22
set -o igncr # Ignore CR in this script
3-
set -o xtrace # Write all commands first to stderr
43
set -o errexit # Exit the script with error if any of the commands fail
54

65
# Supported/used environment variables:

.evergreen/compile.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
set -o xtrace # Write all commands first to stderr
32
set -o errexit # Exit the script with error if any of the commands fail
43

54

.evergreen/config.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ functions:
6464
PROJECT_DIRECTORY: "$PROJECT_DIRECTORY"
6565
PREPARE_SHELL: |
6666
set -o errexit
67-
set -o xtrace
6867
export DRIVERS_TOOLS="$DRIVERS_TOOLS"
6968
export MONGO_ORCHESTRATION_HOME="$MONGO_ORCHESTRATION_HOME"
7069
export MONGODB_BINARIES="$MONGODB_BINARIES"
@@ -289,7 +288,6 @@ tasks:
289288
type: test
290289
params:
291290
script: |
292-
set -o xtrace
293291
. ${DRIVERS_TOOLS}/.evergreen/download-mongodb.sh || true
294292
get_distro || true
295293
echo $DISTRO

.evergreen/download-mongodb.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
#For future use the feed to get full list of distros : http://downloads.mongodb.org/full.json
44

5-
set -o xtrace # Write all commands first to stderr
65
set -o errexit # Exit the script with error if any of the commands fail
76

87
get_distro ()

.evergreen/make-docs.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
set -o xtrace # Write all commands first to stderr
32
set -o errexit # Exit the script with error if any of the commands fail
43

54

.evergreen/make-release.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
set -o xtrace # Write all commands first to stderr
32
set -o errexit # Exit the script with error if any of the commands fail
43

54

.evergreen/run-atlas-proxy.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
# MONGODB_VERSION - version of MongoDB to download and use. For Atlas
2929
# Proxy, must be "3.4" or "latest". Defaults to "3.4".
3030

31-
set -o xtrace # Write all commands first to stderr
3231
set -o errexit # Exit the script with error if any of the commands fail
3332

3433
MONGODB_VERSION=${MONGODB_VERSION:-"3.4"}

.evergreen/run-orchestration.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
set -o xtrace # Write all commands first to stderr
32
set -o errexit # Exit the script with error if any of the commands fail
43

54

.evergreen/start-orchestration.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ if [ "$#" -ne 1 ]; then
66
exit 1
77
fi
88

9-
set -o xtrace # Write all commands first to stderr
109
set -o errexit # Exit the script with error if any of the commands fail
1110

1211

.evergreen/stop-orchestration.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#!/bin/sh
2-
set -o xtrace # Write all commands first to stderr
32
set -o errexit # Exit the script with error if any of the commands fail
43

54
cd "$MONGO_ORCHESTRATION_HOME"

0 commit comments

Comments
 (0)