From c5a7551da83942562672f35cb7f5b225b27bb515 Mon Sep 17 00:00:00 2001 From: Colin Hoglund Date: Tue, 16 Aug 2022 11:43:37 -0700 Subject: [PATCH] unexport --- internal/env/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/env/config.go b/internal/env/config.go index 635377d..0317eb8 100644 --- a/internal/env/config.go +++ b/internal/env/config.go @@ -11,7 +11,7 @@ import ( ) const ( - DefaultHistoryMax = 10 + defaultHistoryMax = 10 ) var ( @@ -85,7 +85,7 @@ func NewConfig(stdout, stderr io.Writer) (*Config, error) { Certificate: aliases.Certificate, // set to same default as helm CLI - HistoryMax: DefaultHistoryMax, + HistoryMax: defaultHistoryMax, Stdout: stdout, Stderr: stderr,