@@ -32,9 +32,9 @@ import (
3232func NewEnvInitCommand (clients * shared.ClientFactory ) * cobra.Command {
3333 cmd := & cobra.Command {
3434 Use : "init" ,
35- Short : "Initialize environment variables from placeholders " ,
35+ Short : "Initialize environment variables from a template file " ,
3636 Long : strings .Join ([]string {
37- `Initialize the project ".env" file by copying from a template placeholder file.` ,
37+ `Initialize the project ".env" file by copying from an ".env" template file.` ,
3838 "" ,
3939 `Copies content from either the ".env.sample" or ".env.example" file to the` ,
4040 `project ".env" file if those project environment variables don't already exist.` ,
@@ -43,7 +43,7 @@ func NewEnvInitCommand(clients *shared.ClientFactory) *cobra.Command {
4343 }, "\n " ),
4444 Example : style .ExampleCommandsf ([]style.ExampleCommand {
4545 {
46- Meaning : "Initialize environment variables from template placeholders " ,
46+ Meaning : "Initialize environment variables from a template file " ,
4747 Command : "env init" ,
4848 },
4949 }),
@@ -108,7 +108,7 @@ func runEnvInitCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command) er
108108 Emoji : "evergreen_tree" ,
109109 Text : "Environment Initialize" ,
110110 Secondary : []string {
111- `No template placeholder was found for environment variables in this project` ,
111+ `No ".env" template file was found for environment variables in this project` ,
112112 fmt .Sprintf ("Set environment variables with %s" , style .Commandf ("env set" , false )),
113113 },
114114 }))
@@ -123,7 +123,7 @@ func runEnvInitCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command) er
123123 Emoji : "evergreen_tree" ,
124124 Text : "Environment Initialize" ,
125125 Secondary : []string {
126- fmt .Sprintf (`Placeholders were copied from "%s" to a project ".env" file` , source ),
126+ fmt .Sprintf (`Environment variables were copied from "%s" to a project ".env" file` , source ),
127127 `This new ".env" file shouldn't be added to version control` ,
128128 },
129129 }))
0 commit comments