From 223c8598672aad13c39170505fcf158c0c66e67d Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Thu, 3 Oct 2019 12:36:13 -0700 Subject: [PATCH] fix(create): convert tabs to spaces on help output Signed-off-by: Matthew Fisher --- cmd/helm/create.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cmd/helm/create.go b/cmd/helm/create.go index dd8df8d1b..e9f71d0a7 100644 --- a/cmd/helm/create.go +++ b/cmd/helm/create.go @@ -36,13 +36,13 @@ directories used in a chart. For example, 'helm create foo' will create a directory structure that looks something like this: - foo/ - ├── .helmignore # Contains patterns to ignore when packaging Helm charts. - ├── Chart.yaml # Information about your chart - ├── values.yaml # The default values for your templates - ├── charts/ # Charts that this chart depends on - └── templates/ # The template files - └── tests/ # The test files + foo/ + ├── .helmignore # Contains patterns to ignore when packaging Helm charts. + ├── Chart.yaml # Information about your chart + ├── values.yaml # The default values for your templates + ├── charts/ # Charts that this chart depends on + └── templates/ # The template files + └── tests/ # The test files 'helm create' takes a path for an argument. If directories in the given path do not exist, Helm will attempt to create them as it goes. If the given