Use /usr/bin/env bash instead of /bin/bash for scripts to support more systems

This commit is contained in:
msk-
2021-01-21 10:43:18 +00:00
parent 021c3ce3fc
commit d91e8af702
4 changed files with 5 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
# Makefile for kustomize CLI and API.
MYGOBIN := $(shell go env GOPATH)/bin
SHELL := /bin/bash
SHELL := /usr/bin/env bash
export PATH := $(MYGOBIN):$(PATH)
MODULES := '"cmd/config" "api/" "kustomize/" "kyaml/"'