Skip to content

Commit

Permalink
Standardise bash shebang (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus authored Jul 22, 2024
1 parent 98b2df8 commit 1fa0a27
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
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

0 comments on commit 1fa0a27

Please sign in to comment.