fix(_test): use bash instead of regular shell to install helm

This commit is contained in:
Seth Goings
2015-12-01 11:36:08 -07:00
parent 0d7f24b81b
commit 498d2ae9be
+1 -1
View File
@@ -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}"