Skip to content

Commit d07e5ac

Browse files
authored
CSHARP-3504: Remove usages of xtrace in shell scripts (#1726)
1 parent e33629a commit d07e5ac

17 files changed

+0
-19
lines changed

evergreen/add-ca-certs.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -o xtrace # Write all commands first to stderr
43
set -o errexit # Exit the script with an error if any of the commands fail
54

65
# Supported/used environment variables:

evergreen/cleanup-test-resources.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -o xtrace # Write all commands first to stderr
4-
53
# Environment variables used as input:
64
# OS The current operating system
75

evergreen/compile.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

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
############################################

evergreen/convert-client-cert-to-pkcs12.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -o xtrace # Write all commands first to stderr
43
set -o errexit # Exit the script with an error if any of the commands fail
54

65
# Environment variables used as input:

evergreen/evergreen.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,6 @@ functions:
7676
TEST_RESULTS_PATH: "./mongo-csharp-driver/build/test-results/TEST-*.xml"
7777
PREPARE_SHELL: |
7878
set -o errexit
79-
set -o xtrace
8079
export DRIVERS_TOOLS="$DRIVERS_TOOLS"
8180
export MONGO_ORCHESTRATION_HOME="$MONGO_ORCHESTRATION_HOME"
8281
export MONGODB_BINARIES="$MONGODB_BINARIES"

evergreen/run-atlas-connectivity-tests.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

3-
# DO NOT set xtrace
43
set -o errexit # Exit the script with error if any of the commands fail
54

65
############################################

evergreen/run-atlas-data-lake-test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -o xtrace
43
set -o errexit # Exit the script with error if any of the commands fail
54

65
############################################

evergreen/run-atlas-search-index-helpers-test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -o xtrace
43
set -o errexit # Exit the script with error if any of the commands fail
54

65
# Environment variables produced as output

evergreen/run-atlas-search-test.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env bash
22

3-
set -o xtrace
43
set -o errexit # Exit the script with error if any of the commands fail
54

65
# Environment variables produced as output

evergreen/run-csfle-azure-tests.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/bin/bash
22

3-
set -o xtrace
43
set -o errexit # Exit the script with error if any of the commands fail
54

65
# Environment variables used as input:

0 commit comments

Comments
 (0)