@@ -110,7 +110,7 @@ func runEnvUnsetCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command, a
110110 clients .IO .PrintTrace (ctx , slacktrace .EnvUnsetSuccess )
111111 clients .IO .PrintInfo (ctx , false , "\n %s" , style .Sectionf (style.TextSection {
112112 Emoji : "evergreen_tree" ,
113- Text : "App Environment" ,
113+ Text : "Environment Unset " ,
114114 Secondary : []string {
115115 "The app has no environment variables to remove" ,
116116 },
@@ -119,7 +119,7 @@ func runEnvUnsetCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command, a
119119 }
120120 selected , err := clients .IO .SelectPrompt (
121121 ctx ,
122- "Select a variable to remove " ,
122+ "Select a variable to unset " ,
123123 variables ,
124124 iostreams.SelectPromptConfig {
125125 Flag : clients .Config .Flags .Lookup ("name" ),
@@ -139,7 +139,7 @@ func runEnvUnsetCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command, a
139139 clients .IO .PrintTrace (ctx , slacktrace .EnvUnsetSuccess )
140140 clients .IO .PrintInfo (ctx , false , "\n %s" , style .Sectionf (style.TextSection {
141141 Emoji : "evergreen_tree" ,
142- Text : "App Environment" ,
142+ Text : "Environment Unset " ,
143143 Secondary : []string {
144144 "The project has no environment variables to remove" ,
145145 },
@@ -153,7 +153,7 @@ func runEnvUnsetCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command, a
153153 sort .Strings (variables )
154154 selected , err := clients .IO .SelectPrompt (
155155 ctx ,
156- "Select a variable to remove " ,
156+ "Select a variable to unset " ,
157157 variables ,
158158 iostreams.SelectPromptConfig {
159159 Flag : clients .Config .Flags .Lookup ("name" ),
@@ -181,9 +181,9 @@ func runEnvUnsetCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command, a
181181 clients .IO .PrintTrace (ctx , slacktrace .EnvUnsetSuccess )
182182 clients .IO .PrintInfo (ctx , false , "\n %s" , style .Sectionf (style.TextSection {
183183 Emoji : "evergreen_tree" ,
184- Text : "App Environment" ,
184+ Text : "Environment Unset " ,
185185 Secondary : []string {
186- fmt .Sprintf ("Successfully removed \" %s\" as an app environment variable" , variableName ),
186+ fmt .Sprintf ("Successfully unset \" %s\" as an app environment variable" , variableName ),
187187 },
188188 }))
189189 } else {
@@ -194,9 +194,9 @@ func runEnvUnsetCommandFunc(clients *shared.ClientFactory, cmd *cobra.Command, a
194194 clients .IO .PrintTrace (ctx , slacktrace .EnvUnsetSuccess )
195195 clients .IO .PrintInfo (ctx , false , "\n %s" , style .Sectionf (style.TextSection {
196196 Emoji : "evergreen_tree" ,
197- Text : "App Environment" ,
197+ Text : "Environment Unset " ,
198198 Secondary : []string {
199- fmt .Sprintf ("Successfully removed \" %s\" as a project environment variable" , variableName ),
199+ fmt .Sprintf ("Successfully unset \" %s\" as a project environment variable" , variableName ),
200200 },
201201 }))
202202 }
0 commit comments