Skip to content

Commit a1092e5

Browse files
authored
Merge pull request #258 from mayrf/make-scripts-shebangs-more-portable
Make shebangs in scripts directory more portable
2 parents 91051d4 + 91f6749 commit a1092e5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

scripts/crd_to_kcl.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
if [ "$#" -lt 1 ] || [ "$#" -gt 2 ]; then
44
echo "Usage: $0 <github-repo-url> <version-tag>"

scripts/helm_to_kcl.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22
# TODO: Make this take a normal helm package name and repo location. This
33
# script tries to avoid changing any local state, like your helm repository
44
# list. To do this with helm, you to link to the tgz of the helm package

scripts/push_pkg_from.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
KCL_MOD_FILE_PATH="$1"
44

scripts/reg.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# create a directory to store user passwords
44
mkdir -p ./scripts/registry_auth

0 commit comments

Comments
 (0)