Merge pull request #50 from sgoings/test-charts-gke

fix(_test): use bash instead of regular shell to install helm
This commit is contained in:
Seth Goings
2015-12-01 12:01:41 -07:00
+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}"