From f9435a4c7e8f2233cb9960650699a3e798e7219e Mon Sep 17 00:00:00 2001 From: Garrett Delfosse Date: Fri, 29 Jul 2022 12:51:24 -0400 Subject: [PATCH 1/2] fix: clarify we download templates on template select --- cli/templateinit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/templateinit.go b/cli/templateinit.go index d022d3b5555d2..c9d7944d8a42b 100644 --- a/cli/templateinit.go +++ b/cli/templateinit.go @@ -36,7 +36,7 @@ func templateInit() *cobra.Command { _, _ = fmt.Fprintln(cmd.OutOrStdout(), cliui.Styles.Wrap.Render( "A template defines infrastructure as code to be provisioned "+ - "for individual developer workspaces. Select an example to get started:\n")) + "for individual developer workspaces. Select an example to download:\n")) option, err := cliui.Select(cmd, cliui.SelectOptions{ Options: exampleNames, }) From c12f0aed3be40b5500776c4816dca818955b3012 Mon Sep 17 00:00:00 2001 From: Steven Masley Date: Tue, 23 Aug 2022 13:22:55 -0400 Subject: [PATCH 2/2] Update cli/templateinit.go Co-authored-by: Joe Previte --- cli/templateinit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/templateinit.go b/cli/templateinit.go index c9d7944d8a42b..ad936024a9f11 100644 --- a/cli/templateinit.go +++ b/cli/templateinit.go @@ -36,7 +36,7 @@ func templateInit() *cobra.Command { _, _ = fmt.Fprintln(cmd.OutOrStdout(), cliui.Styles.Wrap.Render( "A template defines infrastructure as code to be provisioned "+ - "for individual developer workspaces. Select an example to download:\n")) + "for individual developer workspaces. Select an example to be copied to the active directory:\n")) option, err := cliui.Select(cmd, cliui.SelectOptions{ Options: exampleNames, })