Skip to content

Commit 798c0c3

Browse files
authored
chore(scripts): use bash found in path in shebang (#937)
1 parent 4bcfd89 commit 798c0c3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/check-docs.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
# This script is used to ensure for PRs the docs are up-to-date via the CI pipeline
44
# Usage: ./check-docs.sh

scripts/publish-apt-packages.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
# This script is used to publish new packages to the CLI APT repository
44
# Usage: ./publish-apt-packages.sh

scripts/replace.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
# Add replace directives to local files to go.work
33
set -eo pipefail
44

0 commit comments

Comments
 (0)