From 6bcd19d5191b223612b1cda5b73dab2fab66b978 Mon Sep 17 00:00:00 2001 From: Adam Reese Date: Wed, 12 Apr 2017 12:59:30 -0700 Subject: [PATCH] fix(scripts): don't include plugins for generating docs --- scripts/update-docs.sh | 2 ++ scripts/verify-docs.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/scripts/update-docs.sh b/scripts/update-docs.sh index 404ba8090..12a4ead4b 100755 --- a/scripts/update-docs.sh +++ b/scripts/update-docs.sh @@ -29,6 +29,8 @@ fi kube::util::ensure-temp-dir +export HELM_NO_PLUGINS=1 + mkdir -p ${KUBE_TEMP}/docs/helm ${KUBE_TEMP}/docs/man/man1 ${KUBE_TEMP}/scripts bin/helm docs --dir ${KUBE_TEMP}/docs/helm bin/helm docs --dir ${KUBE_TEMP}/docs/man/man1 --type man diff --git a/scripts/verify-docs.sh b/scripts/verify-docs.sh index 7ea266221..72af9e743 100755 --- a/scripts/verify-docs.sh +++ b/scripts/verify-docs.sh @@ -29,6 +29,8 @@ fi kube::util::ensure-temp-dir +export HELM_NO_PLUGINS=1 + mkdir -p ${KUBE_TEMP}/docs/helm ${KUBE_TEMP}/docs/man/man1 ${KUBE_TEMP}/scripts bin/helm docs --dir ${KUBE_TEMP}/docs/helm bin/helm docs --dir ${KUBE_TEMP}/docs/man/man1 --type man