File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ functions:
76
76
params :
77
77
script : |
78
78
${PREPARE_SHELL}
79
- MONGODB_VERSION=${VERSION} TOPOLOGY=${TOPOLOGY} sh ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
79
+ MONGODB_VERSION=${VERSION} TOPOLOGY=${TOPOLOGY} bash ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
80
80
- command : expansions.update
81
81
params :
82
82
file : mo-expansion.yml
@@ -87,7 +87,7 @@ functions:
87
87
working_dir : src
88
88
script : |
89
89
${PREPARE_SHELL}
90
- AUTH=${AUTH} SSL=${SSL} MONGODB_URI="${MONGODB_URI}" sh ${PROJECT_DIRECTORY}/.evergreen/run-tests.sh
90
+ AUTH=${AUTH} SSL=${SSL} MONGODB_URI="${MONGODB_URI}" bash ${PROJECT_DIRECTORY}/.evergreen/run-tests.sh
91
91
cleanup :
92
92
- command : shell.exec
93
93
params :
@@ -117,7 +117,7 @@ functions:
117
117
working_dir : src
118
118
script : |
119
119
${PREPARE_SHELL}
120
- NODE_LTS_NAME=${NODE_LTS_NAME} sh ${PROJECT_DIRECTORY}/.evergreen/install-dependencies.sh
120
+ NODE_LTS_NAME=${NODE_LTS_NAME} bash ${PROJECT_DIRECTORY}/.evergreen/install-dependencies.sh
121
121
run atlas tests :
122
122
- command : shell.exec
123
123
type : test
@@ -128,7 +128,7 @@ functions:
128
128
# DO NOT ECHO WITH XTRACE (which PREPARE_SHELL does)
129
129
130
130
NODE_LTS_NAME='${NODE_LTS_NAME}' ATLAS_REPL='${atlas_repl}' ATLAS_SHRD='${atlas_shrd}'
131
- ATLAS_FREE='${atlas_free}' ATLAS_TLS11='${atlas_tls11}' ATLAS_TLS12='${atlas_tls12}' sh
131
+ ATLAS_FREE='${atlas_free}' ATLAS_TLS11='${atlas_tls11}' ATLAS_TLS12='${atlas_tls12}' bash
132
132
${PROJECT_DIRECTORY}/.evergreen/run-atlas-tests.sh
133
133
pre :
134
134
- func : fetch source
Original file line number Diff line number Diff line change 1
- #! /bin/sh
1
+ #! /bin/bash
2
2
# set -o xtrace # Write all commands first to stderr
3
3
set -o errexit # Exit the script with error if any of the commands fail
4
4
Original file line number Diff line number Diff line change 1
- #! /bin/sh
1
+ #! /bin/bash
2
2
3
3
set -o errexit # Exit the script with error if any of the commands fail
4
4
@@ -7,4 +7,4 @@ NODE_ARTIFACTS_PATH="${PROJECT_DIRECTORY}/node-artifacts"
7
7
export NVM_DIR=" ${NODE_ARTIFACTS_PATH} /nvm"
8
8
[ -s " $NVM_DIR /nvm.sh" ] && \. " $NVM_DIR /nvm.sh"
9
9
10
- ATLAS_REPL=" $ATLAS_REPL " ATLAS_SHRD=" $ATLAS_SHRD " ATLAS_FREE=" $ATLAS_FREE " ATLAS_TLS11=" $ATLAS_TLS11 " ATLAS_TLS12=" $ATLAS_TLS12 " npm run atlas
10
+ ATLAS_REPL=" $ATLAS_REPL " ATLAS_SHRD=" $ATLAS_SHRD " ATLAS_FREE=" $ATLAS_FREE " ATLAS_TLS11=" $ATLAS_TLS11 " ATLAS_TLS12=" $ATLAS_TLS12 " npm run atlas
Original file line number Diff line number Diff line change 1
- #! /bin/sh
1
+ #! /bin/bash
2
2
# set -o xtrace # Write all commands first to stderr
3
3
set -o errexit # Exit the script with error if any of the commands fail
4
4
You can’t perform that action at this time.
0 commit comments