From 498d2ae9beebd096030324b9128b324ad83f6f84 Mon Sep 17 00:00:00 2001 From: Seth Goings Date: Tue, 1 Dec 2015 11:34:46 -0700 Subject: [PATCH] fix(_test): use bash instead of regular shell to install helm --- _test/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_test/lib.sh b/_test/lib.sh index 8d2603565e..82e7e260f1 100644 --- a/_test/lib.sh +++ b/_test/lib.sh @@ -15,7 +15,7 @@ function install-helm { mkdir -p .bin ( cd .bin - curl -s https://get.helm.sh | sh + curl -s https://get.helm.sh | bash ) export PATH="$(pwd)/.bin:${PATH}"