From 5734c2162e6960b015b23a443421b77b10b817ad Mon Sep 17 00:00:00 2001 From: David Wittman Date: Thu, 30 Mar 2017 17:10:20 -0500 Subject: [PATCH] Fix identation of `helm dep` help text The `repository` lines in the help text for `helm dep` were misaligned with the rest of the dependency block. --- cmd/helm/dependency.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/dependency.go b/cmd/helm/dependency.go index 44cb29e4d..9c51be600 100644 --- a/cmd/helm/dependency.go +++ b/cmd/helm/dependency.go @@ -47,10 +47,10 @@ For example, this requirements file declares two dependencies: dependencies: - name: nginx version: "1.2.3" - repository: "https://example.com/charts" + repository: "https://example.com/charts" - name: memcached version: "3.2.1" - repository: "https://another.example.com/charts" + repository: "https://another.example.com/charts" The 'name' should be the name of a chart, where that name must match the name in that chart's 'Chart.yaml' file.