From 3307e0998c620f17bd765af0b96f1adeb4c267ff Mon Sep 17 00:00:00 2001 From: Julian Strobl Date: Tue, 26 Sep 2017 10:22:19 +0200 Subject: [PATCH] Align lintCmd struct --- cmd/helm/lint.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/helm/lint.go b/cmd/helm/lint.go index 3862d2d76..7ad37984e 100644 --- a/cmd/helm/lint.go +++ b/cmd/helm/lint.go @@ -43,9 +43,9 @@ or recommendation, it will emit [WARNING] messages. type lintCmd struct { namespace string - strict bool - paths []string - out io.Writer + strict bool + paths []string + out io.Writer } func newLintCmd(out io.Writer) *cobra.Command {