Skip to content

Commit 5bdeb6d

Browse files
committed
#754 Use quotes to prevent word splitting
Signed-off-by: Sven Strittmatter <sven.strittmatter@iteratec.com>
1 parent bb12eb7 commit 5bdeb6d

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ hook-docs: ## Generate documentation for hooks.
7373
if [ -d "docs" ]; then
7474
echo "Docs Folder found at: $${dir}/docs"
7575
helm-docs \
76-
--template-files=$(HELM_DOCS_DIR)/templates.gotmpl \
77-
--template-files=.helm-docs.gotmpl \
78-
--template-files=$(HELM_DOCS_DIR)/README.DockerHub-Hook.md.gotmpl \
79-
--output-file=docs/README.DockerHub-Hook.md
76+
--template-files="$(HELM_DOCS_DIR)/templates.gotmpl" \
77+
--template-files=".helm-docs.gotmpl" \
78+
--template-files="$(HELM_DOCS_DIR)/README.DockerHub-Hook.md.gotmpl" \
79+
--output-file="docs/README.DockerHub-Hook.md"
8080
helm-docs \
81-
--template-files=$(HELM_DOCS_DIR)/templates.gotmpl \
82-
--template-files=.helm-docs.gotmpl \
83-
--template-files=$(HELM_DOCS_DIR)/README.ArtifactHub.md.gotmpl \
84-
--output-file=docs/README.ArtifactHub.md
81+
--template-files="$(HELM_DOCS_DIR)/templates.gotmpl" \
82+
--template-files=".helm-docs.gotmpl" \
83+
--template-files="$(HELM_DOCS_DIR)/README.ArtifactHub.md.gotmpl" \
84+
--output-file="docs/README.ArtifactHub.md"
8585
else
8686
echo "Ignoring Docs creation process for Chart $$dir, because no `docs` folder found at: $${dir}/docs"
8787
fi

0 commit comments

Comments
 (0)