You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/05/10 21:18:09 UTC

[GitHub] mrutkows closed pull request #195: download/install helm from /tmp

mrutkows closed pull request #195: download/install helm from /tmp
URL: https://github.com/apache/incubator-openwhisk-deploy-kube/pull/195
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/tools/travis/setup.sh b/tools/travis/setup.sh
index cd40d29..75c232d 100755
--- a/tools/travis/setup.sh
+++ b/tools/travis/setup.sh
@@ -77,9 +77,11 @@ echo "minikube is deployed and reachable"
 minikube update-context
 
 # Download and install helm
-curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh
-chmod +x get_helm.sh
-./get_helm.sh
+pushd /tmp
+  curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh
+  chmod +x get_helm.sh
+  ./get_helm.sh
+popd
 
 # Install tiller
 /usr/local/bin/helm init --service-account default


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services