Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardise bash shebang #458

Merged
merged 1 commit into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .evergreen/ensure-binary.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
#
# Ensure the given binary is on the PATH.
# Should be called as:
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/handle-paths.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
#
# This script will handle the correct cross-platform absolute
# paths for a script directory and DRIVERS_TOOLS.
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/ecdsa/mock-delegate-revoked.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
python3 ../ocsp_mock.py \
--ca_file ca.pem \
--ocsp_responder_cert ocsp-responder.crt \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/ecdsa/mock-delegate-valid.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
python3 ../ocsp_mock.py \
--ca_file ca.pem \
--ocsp_responder_cert ocsp-responder.crt \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/ecdsa/mock-revoked.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
# Use the CA as the OCSP responder
python3 ../ocsp_mock.py \
--ca_file ca.pem \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/ecdsa/mock-valid.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
python3 ../ocsp_mock.py \
--ca_file ca.pem \
--ocsp_responder_cert ca.crt \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/rsa/mock-delegate-revoked.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
python3 ../ocsp_mock.py \
--ca_file ca.pem \
--ocsp_responder_cert ocsp_responder.crt \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/rsa/mock-delegate-valid.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
python3 ../ocsp_mock.py \
--ca_file ca.pem \
--ocsp_responder_cert ocsp-responder.crt \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/rsa/mock-revoked.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
python3 ../ocsp_mock.py \
--ca_file ca.pem \
--ocsp_responder_cert ca.crt \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/ocsp/rsa/mock-valid.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
python3 ../ocsp_mock.py \
--ca_file ca.pem \
--ocsp_responder_cert ca.crt \
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/run-orchestration.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -o errexit # Exit the script with error if any of the commands fail

# Supported environment variables:
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/stop-orchestration.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -o errexit # Exit the script with error if any of the commands fail

cd "$MONGO_ORCHESTRATION_HOME"
Expand Down
Loading