Skip to content

PHPLIB-637 Remove xtrace from build scripts #817

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 31, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .evergreen/compile-unix.sh
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
1 change: 0 additions & 1 deletion .evergreen/compile-windows.sh
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
1 change: 0 additions & 1 deletion .evergreen/compile.sh
Original file line number Diff line number Diff line change
@@ -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


Expand Down
2 changes: 0 additions & 2 deletions .evergreen/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -289,7 +288,6 @@ tasks:
type: test
params:
script: |
set -o xtrace
. ${DRIVERS_TOOLS}/.evergreen/download-mongodb.sh || true
get_distro || true
echo $DISTRO
Expand Down
1 change: 0 additions & 1 deletion .evergreen/download-mongodb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()
Expand Down
1 change: 0 additions & 1 deletion .evergreen/make-docs.sh
Original file line number Diff line number Diff line change
@@ -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


Expand Down
1 change: 0 additions & 1 deletion .evergreen/make-release.sh
Original file line number Diff line number Diff line change
@@ -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


Expand Down
1 change: 0 additions & 1 deletion .evergreen/run-atlas-proxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down
1 change: 0 additions & 1 deletion .evergreen/run-orchestration.sh
Original file line number Diff line number Diff line change
@@ -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


Expand Down
1 change: 0 additions & 1 deletion .evergreen/start-orchestration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
1 change: 0 additions & 1 deletion .evergreen/stop-orchestration.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand Down