From 9c0cd5287cb7bd87036f90bec6255d65c95af6a0 Mon Sep 17 00:00:00 2001 From: Garrett Delfosse Date: Tue, 23 Aug 2022 13:30:46 -0400 Subject: [PATCH] fix: clarify we download templates on template select (#3296) Co-authored-by: Joe Previte Co-authored-by: Steven Masley --- cli/templateinit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/templateinit.go b/cli/templateinit.go index d022d3b555..ad936024a9 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 be copied to the active directory:\n")) option, err := cliui.Select(cmd, cliui.SelectOptions{ Options: exampleNames, })