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 <rob@sarcasticadmin.com>
pull/4609/head
Robert James Hernandez 7 years ago
parent 37a731db79
commit d8ca7e69f1

@ -18,7 +18,7 @@ BINDIR := $(CURDIR)/bin
BINARIES := helm tiller BINARIES := helm tiller
# Required for globs to work correctly # Required for globs to work correctly
SHELL=/bin/bash SHELL=/usr/bin/env bash
.PHONY: all .PHONY: all
all: build all: build

Loading…
Cancel
Save