Skip to content

Commit 2558c02

Browse files
authored
chore(scripts): use bash found in path in shebang (#950)
1 parent 64d4597 commit 2558c02

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
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/lint-golangci-lint.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
# This script lints the SDK modules and the internal examples
33
# Pre-requisites: golangci-lint
44
set -eo pipefail

scripts/project.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 manage the project, only used for installing the required tools for now
44
# Usage: ./project.sh [action]

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

scripts/tfplugindocs.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
# Pre-requisites: tfplugindocs
33
set -eo pipefail
44

0 commit comments

Comments
 (0)