From 54f82ea525c5014d3bfa8753c0326917ffb4b6ba Mon Sep 17 00:00:00 2001 From: Josh Dolitsky Date: Mon, 4 Dec 2017 13:11:12 -0600 Subject: [PATCH] Run helm dep build in circle lint.sh (#2919) --- test/circle/lint.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/circle/lint.sh b/test/circle/lint.sh index f4d5f74053..727e43edd7 100755 --- a/test/circle/lint.sh +++ b/test/circle/lint.sh @@ -115,7 +115,10 @@ for directory in ${CHANGED_FOLDERS}; do if [ "$directory" == "incubator/common" ]; then continue elif [ -d $directory ]; then - printf "\nRuning helm lint on the chart at ${directory}\n" + printf "\nRunning helm dep build on the chart at ${directory}\n" + run helm dep build ${directory} + + printf "\nRunning helm lint on the chart at ${directory}\n" run helm lint ${directory} yamllinter ${directory}