Skip to content

Commit 42f3920

Browse files
chore: update all bash scripts to use shebang: /usr/bin/env bash (#128)
1 parent 4e1ae5c commit 42f3920

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/docker-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -euo pipefail
44

scripts/shellcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
find scripts -name "*.sh" -exec shellcheck {} +
44

scripts/version-sync.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
function usage {
33
echo "Usage: $(basename "$0") [-c] -f FILE_TO_CHANGE REPLACEMENT_FORMAT [-f FILE_TO_CHANGE REPLACEMENT_FORMAT ...]" 2>&1
44
echo 'Synchronize files to latest version in source file'

0 commit comments

Comments
 (0)