File tree Expand file tree Collapse file tree 6 files changed +2
-9
lines changed Expand file tree Collapse file tree 6 files changed +2
-9
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- set -o xtrace # Write all commands first to stderr
3
2
set -o errexit # Exit the script with error if any of the commands fail
4
3
5
4
# Supported/used environment variables:
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
set -o igncr # Ignore CR in this script
3
- set -o xtrace # Write all commands first to stderr
4
3
set -o errexit # Exit the script with error if any of the commands fail
5
4
6
5
# Supported/used environment variables:
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- set -o xtrace # Write all commands first to stderr
3
2
set -o errexit # Exit the script with error if any of the commands fail
4
3
5
4
Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ functions:
86
86
PROJECT_DIRECTORY: "$PROJECT_DIRECTORY"
87
87
PREPARE_SHELL: |
88
88
set -o errexit
89
- set -o xtrace
90
89
export DRIVERS_TOOLS="$DRIVERS_TOOLS"
91
90
export MONGO_ORCHESTRATION_HOME="$MONGO_ORCHESTRATION_HOME"
92
91
export PROJECT_ORCHESTRATION_HOME="$PROJECT_ORCHESTRATION_HOME"
@@ -159,7 +158,7 @@ functions:
159
158
- command : shell.exec
160
159
params :
161
160
continue_on_err : true
162
- script : " set -o xtrace && rm -rf ${PROJECT_DIRECTORY}"
161
+ script : " rm -rf ${PROJECT_DIRECTORY}"
163
162
- command : s3.get
164
163
params :
165
164
aws_key : ${aws_key}
@@ -171,7 +170,7 @@ functions:
171
170
params :
172
171
continue_on_err : true
173
172
# EVG-1105: Use s3.get extract_to: ./
174
- script : " set -o xtrace && cd .. && rm -rf ${PROJECT_DIRECTORY} && mkdir ${PROJECT_DIRECTORY}/ && tar xf build.tar.gz -C ${PROJECT_DIRECTORY}/"
173
+ script : " cd .. && rm -rf ${PROJECT_DIRECTORY} && mkdir ${PROJECT_DIRECTORY}/ && tar xf build.tar.gz -C ${PROJECT_DIRECTORY}/"
175
174
176
175
" exec compile script" :
177
176
- command : shell.exec
@@ -454,7 +453,6 @@ tasks:
454
453
type : test
455
454
params :
456
455
script : |
457
- set -o xtrace
458
456
. ${DRIVERS_TOOLS}/.evergreen/download-mongodb.sh || true
459
457
get_distro || true
460
458
echo $DISTRO
Original file line number Diff line number Diff line change 24
24
25
25
# Fail on any command returning a non-zero exit status.
26
26
set -o errexit
27
- set -o xtrace
28
27
29
28
USE_DELEGATE=${USE_DELEGATE:- OFF}
30
29
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- set -o xtrace # Write all commands first to stderr
3
2
set -o errexit # Exit the script with error if any of the commands fail
4
3
5
4
# Supported/used environment variables:
You can’t perform that action at this time.
0 commit comments