From 8dc009563b29a778fcfeb195719f8a2c0de2a692 Mon Sep 17 00:00:00 2001 From: Ludvig Liljenberg Date: Mon, 11 Sep 2023 14:14:28 -0700 Subject: [PATCH] revert removal of logging for `porter create` (#2900) add back the log Signed-off-by: Ludvig Liljenberg --- pkg/porter/create.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/porter/create.go b/pkg/porter/create.go index 7a8c61eb5..427f9f8b4 100644 --- a/pkg/porter/create.go +++ b/pkg/porter/create.go @@ -13,6 +13,7 @@ import ( // Create creates a new bundle configuration in the current directory func (p *Porter) Create() error { + fmt.Fprintln(p.Out, "creating porter configuration in the current directory") destinationDir := "." // current directory if err := p.CopyTemplate(p.Templates.GetManifest, filepath.Join(destinationDir, config.Name)); err != nil {