File tree 3 files changed +6
-6
lines changed 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
set -o errexit # Exit the script with error if any of the commands fail
3
3
4
4
if [ -z " $PACKAGE_VERSION " ]; then
5
- PACKAGE_VERSION=$( sh ./evergreen/get-version.sh)
5
+ PACKAGE_VERSION=$( bash ./evergreen/get-version.sh)
6
6
echo Calculated PACKAGE_VERSION value: " $PACKAGE_VERSION "
7
7
fi
8
8
Original file line number Diff line number Diff line change 2
2
set -o errexit # Exit the script with error if any of the commands fail
3
3
4
4
if [ -z " $PACKAGE_VERSION " ]; then
5
- PACKAGE_VERSION=$( sh ./evergreen/get-version.sh)
5
+ PACKAGE_VERSION=$( bash ./evergreen/get-version.sh)
6
6
echo Calculated PACKAGE_VERSION value: " $PACKAGE_VERSION "
7
7
fi
8
8
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ functions:
47
47
fi
48
48
49
49
if [ "${BUILD_TARGET}" = "release" ]; then
50
- PACKAGE_VERSION=$(sh ./evergreen/get-version.sh)
50
+ PACKAGE_VERSION=$(bash ./evergreen/get-version.sh)
51
51
fi
52
52
53
53
export DOTNET_SDK_PATH="$(pwd)/../.dotnet"
@@ -101,7 +101,7 @@ functions:
101
101
params :
102
102
script : |
103
103
${PREPARE_SHELL}
104
- sh ${PROJECT_DIRECTORY}/evergreen/install-dotnet.sh
104
+ bash ${PROJECT_DIRECTORY}/evergreen/install-dotnet.sh
105
105
106
106
prepare-resources :
107
107
- command : shell.exec
@@ -229,7 +229,7 @@ functions:
229
229
STORAGE_ENGINE=${STORAGE_ENGINE} \
230
230
ORCHESTRATION_FILE=${ORCHESTRATION_FILE} \
231
231
SKIP_LEGACY_SHELL=${SKIP_LEGACY_SHELL} \
232
- sh ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
232
+ bash ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
233
233
# run-orchestration generates expansion file with the MONGODB_URI for the cluster
234
234
- command : expansions.update
235
235
params :
@@ -245,7 +245,7 @@ functions:
245
245
AUTH=${AUTH} \
246
246
SSL=${SSL} \
247
247
ORCHESTRATION_FILE=${ORCHESTRATION_FILE} \
248
- sh ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
248
+ bash ${DRIVERS_TOOLS}/.evergreen/run-orchestration.sh
249
249
- command : expansions.update
250
250
params :
251
251
file : mo-expansion.yml
You can’t perform that action at this time.
0 commit comments