From b7d6639b25624494bfe48a03d571759ce984b1a5 Mon Sep 17 00:00:00 2001 From: Quan TRAN Date: Tue, 23 Mar 2021 08:27:51 +0100 Subject: [PATCH] (fix) remove usage of charts.yaml in error message (#1732) --- pkg/app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/app/app.go b/pkg/app/app.go index b935b7d8..568f16cd 100644 --- a/pkg/app/app.go +++ b/pkg/app/app.go @@ -1027,7 +1027,7 @@ func (a *App) findDesiredStateFiles(specifiedPath string, opts LoadOpts) ([]stri } else if defaultFile != "" { return []string{defaultFile}, nil } else { - return []string{}, fmt.Errorf("no state file found. It must be named %s/*.{yaml,yml}, %s, or %s, or otherwise specified with the --file flag", DefaultHelmfileDirectory, DefaultHelmfile, DeprecatedHelmfile) + return []string{}, fmt.Errorf("no state file found. It must be named %s/*.{yaml,yml} or %s, otherwise specified with the --file flag", DefaultHelmfileDirectory, DefaultHelmfile) } }