Skip to content

Commit 51900d3

Browse files
committed
Invoke executable scripts via shebang
1 parent d2a13e7 commit 51900d3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.mci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ functions:
193193
cd drivers-evergreen-tools
194194
export DRIVERS_TOOLS=$(pwd)
195195
196-
bash .evergreen/atlas_data_lake/pull-mongohouse-image.sh
196+
.evergreen/atlas_data_lake/pull-mongohouse-image.sh
197197
198198
"run_mongohouse":
199199
command: shell.exec
@@ -203,7 +203,7 @@ functions:
203203
cd drivers-evergreen-tools
204204
export DRIVERS_TOOLS=$(pwd)
205205
206-
bash .evergreen/atlas_data_lake/run-mongohouse-image.sh
206+
.evergreen/atlas_data_lake/run-mongohouse-image.sh
207207
208208
"test_mongohouse":
209209
command: shell.exec
@@ -1004,7 +1004,7 @@ tasks:
10041004
script: |-
10051005
set -o errexit
10061006
export INSTALL_VERSION=${mongocxx_version_finder_sh}
1007-
sh ./.evergreen/uninstall_check.sh
1007+
./.evergreen/uninstall_check.sh
10081008
10091009
- name: uninstall_check_windows
10101010
commands:
@@ -1075,7 +1075,7 @@ tasks:
10751075
script: |-
10761076
set -o errexit
10771077
export IS_PATCH="${is_patch}"
1078-
sh .evergreen/debian_package_build.sh
1078+
.evergreen/debian_package_build.sh
10791079
- command: s3.put
10801080
params:
10811081
aws_key: ${aws_key}
@@ -1100,7 +1100,7 @@ tasks:
11001100
set -o errexit
11011101
export IS_PATCH="${is_patch}"
11021102
export DEB_BUILD_PROFILES="pkg.mongo-cxx-driver.mnmlstc"
1103-
sh .evergreen/debian_package_build.sh
1103+
.evergreen/debian_package_build.sh
11041104
- command: s3.put
11051105
params:
11061106
aws_key: ${aws_key}
@@ -1123,7 +1123,7 @@ tasks:
11231123
shell: bash
11241124
script: |-
11251125
set -o errexit
1126-
sh .evergreen/build_snapshot_rpm.sh
1126+
.evergreen/build_snapshot_rpm.sh
11271127
- command: s3.put
11281128
params:
11291129
aws_key: ${aws_key}

generate_uninstall/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ else ()
7272
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/${UNINSTALL_PROG}" DESTINATION "${UNINSTALL_PROG_DIR}" PERMISSIONS ${UNINSTALL_PERMISSIONS})
7373

7474
add_custom_target (uninstall
75-
COMMAND sh "${CMAKE_CURRENT_BINARY_DIR}/${UNINSTALL_PROG}"
75+
COMMAND "${CMAKE_CURRENT_BINARY_DIR}/${UNINSTALL_PROG}"
7676
)
7777
endif ()

0 commit comments

Comments
 (0)