From 501e23b4afb3adbc634894ad7f6ef2a888f1b4d3 Mon Sep 17 00:00:00 2001 From: Seth Goings Date: Wed, 2 Dec 2015 10:13:23 -0700 Subject: [PATCH] fix(_test): use helm doctor instead of update to get config.yml --- _test/lib.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/_test/lib.sh b/_test/lib.sh index 82e7e260f1..50361dbff1 100644 --- a/_test/lib.sh +++ b/_test/lib.sh @@ -1,9 +1,8 @@ function jigger-files-for-travis { - helm update # need ~/.helm/config.yml + helm doctor # need proper ~/.helm directory structure and config.yml if [ "${TRAVIS}" == true ]; then - mkdir -p ${TRAVIS_HOME}/.helm/cache - cp -r . ${TRAVIS_HOME}/.helm/cache + cp -r . ${TRAVIS_HOME}/.helm/cache/charts fi }