From d8ca7e69f15db2c05992e4ec438ebc9b4f4e5b50 Mon Sep 17 00:00:00 2001 From: Robert James Hernandez Date: Fri, 7 Sep 2018 10:11:03 -0700 Subject: [PATCH] fix(helm): Use env to locate bash Leverage '/usr/bin/env bash` for find bash instead of hardcoding '/bin/bash' since some *nix OSes have it installed elsewhere. Signed-off-by: Robert James Hernandez --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9b8588712..f824481ca 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ BINDIR := $(CURDIR)/bin BINARIES := helm tiller # Required for globs to work correctly -SHELL=/bin/bash +SHELL=/usr/bin/env bash .PHONY: all all: build