Skip to content

Commit 91f6749

Browse files
committed
Make shebangs in scripts directory more portable
Signed-off-by: mayrf <[email protected]>
1 parent 91051d4 commit 91f6749

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)