From c9d31d7cca789c1e7f5b47236b6d9bd1f5f150d2 Mon Sep 17 00:00:00 2001 From: Chris Laprun Date: Thu, 27 Feb 2020 17:45:08 +0100 Subject: [PATCH] feat: display current dir name --- pkg/cmdutil/create.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmdutil/create.go b/pkg/cmdutil/create.go index 7d5ec42..27ca62a 100644 --- a/pkg/cmdutil/create.go +++ b/pkg/cmdutil/create.go @@ -81,7 +81,7 @@ func (o *CreateOptions) Complete(name string, cmd *cobra.Command, args []string) o.Delegate.Set(entity.Entity) } } - } else if IsInteractive(cmd) && ui.Proceed(fmt.Sprintf("Found %d %s(s), do you want to %s from them", size, t, o.operationName)) { + } else if IsInteractive(cmd) && ui.Proceed(fmt.Sprintf("Found %d %s(s) in %s, do you want to %s from them", size, t, currentDirName, o.operationName)) { o.Name = ui.Select(t, names, o.Name) } }