From ab5778c9c236d2d8d123680a46aedd246f63ab69 Mon Sep 17 00:00:00 2001 From: Matt Butcher Date: Thu, 10 Jan 2019 11:36:58 -0700 Subject: [PATCH] fix: removed debug output Signed-off-by: Matt Butcher --- pkg/chartutil/load.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/chartutil/load.go b/pkg/chartutil/load.go index b554efeee..0e292c850 100644 --- a/pkg/chartutil/load.go +++ b/pkg/chartutil/load.go @@ -109,9 +109,7 @@ func LoadArchive(in io.Reader) (*chart.Chart, error) { return nil, errors.New("chart illegally contains absolute paths") } - println("path", n) n = path.Clean(n) - println(" cleaned", n) if n == "." { // In this case, the original path was relative when it should have been absolute. return nil, errors.New("chart illegally contains empty path")