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 11#! /bin/sh
2- set -o xtrace # Write all commands first to stderr
32set -o errexit # Exit the script with error if any of the commands fail
43
54# Supported/used environment variables:
Original file line number Diff line number Diff line change 11#! /bin/sh
22set -o igncr # Ignore CR in this script
3- set -o xtrace # Write all commands first to stderr
43set -o errexit # Exit the script with error if any of the commands fail
54
65# Supported/used environment variables:
Original file line number Diff line number Diff line change 11#! /bin/sh
2- set -o xtrace # Write all commands first to stderr
32set -o errexit # Exit the script with error if any of the commands fail
43
54
Original file line number Diff line number Diff line change @@ -86,7 +86,6 @@ functions:
8686 PROJECT_DIRECTORY: "$PROJECT_DIRECTORY"
8787 PREPARE_SHELL: |
8888 set -o errexit
89- set -o xtrace
9089 export DRIVERS_TOOLS="$DRIVERS_TOOLS"
9190 export MONGO_ORCHESTRATION_HOME="$MONGO_ORCHESTRATION_HOME"
9291 export PROJECT_ORCHESTRATION_HOME="$PROJECT_ORCHESTRATION_HOME"
@@ -159,7 +158,7 @@ functions:
159158 - command : shell.exec
160159 params :
161160 continue_on_err : true
162- script : " set -o xtrace && rm -rf ${PROJECT_DIRECTORY}"
161+ script : " rm -rf ${PROJECT_DIRECTORY}"
163162 - command : s3.get
164163 params :
165164 aws_key : ${aws_key}
@@ -171,7 +170,7 @@ functions:
171170 params :
172171 continue_on_err : true
173172 # 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}/"
175174
176175 " exec compile script" :
177176 - command : shell.exec
@@ -454,7 +453,6 @@ tasks:
454453 type : test
455454 params :
456455 script : |
457- set -o xtrace
458456 . ${DRIVERS_TOOLS}/.evergreen/download-mongodb.sh || true
459457 get_distro || true
460458 echo $DISTRO
Original file line number Diff line number Diff line change 2424
2525# Fail on any command returning a non-zero exit status.
2626set -o errexit
27- set -o xtrace
2827
2928USE_DELEGATE=${USE_DELEGATE:- OFF}
3029
Original file line number Diff line number Diff line change 11#! /bin/sh
2- set -o xtrace # Write all commands first to stderr
32set -o errexit # Exit the script with error if any of the commands fail
43
54# Supported/used environment variables:
You can’t perform that action at this time.
0 commit comments