From 1679edc3378b128f23a71f9c50813aafeeda9d97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20N=C3=A4gele?= Date: Tue, 27 Oct 2020 08:06:16 +0100 Subject: [PATCH] Reword message --- pkg/chart/chart.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/chart/chart.go b/pkg/chart/chart.go index 11455275..b1dd680c 100644 --- a/pkg/chart/chart.go +++ b/pkg/chart/chart.go @@ -297,7 +297,7 @@ func (t *Testing) processCharts(action func(chart *Chart) TestResult) ([]TestRes } if t.config.ExcludeDeprecated && chart.yaml.Deprecated { - fmt.Printf("Chart %s is deprecated, and will be ignored due to the ExcludeDeprecated configuration option\n", chart.String()) + fmt.Printf("Chart '%s' is deprecated and will be ignored because '--exclude-deprecated' is set\n", chart.String()) } else { charts = append(charts, chart) }