File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -75,5 +75,5 @@ func (cmd *SetEnv) Run(c *cli.Context) {
7575 }
7676
7777 cmd .ui .Ok ()
78- cmd .ui .Say ("TIP: Use '%s push ' to ensure your env variable changes take effect" , cf .Name ())
78+ cmd .ui .Say ("TIP: Use '%s' to ensure your env variable changes take effect" , terminal . CommandColor ( cf .Name () + " push" ))
7979}
Original file line number Diff line number Diff line change @@ -73,5 +73,5 @@ func (cmd *UnsetEnv) Run(c *cli.Context) {
7373 }
7474
7575 cmd .ui .Ok ()
76- cmd .ui .Say ("TIP: Use '%s push ' to ensure your env variable changes take effect" , cf .Name ())
76+ cmd .ui .Say ("TIP: Use '%s' to ensure your env variable changes take effect" , terminal . CommandColor ( cf .Name () + " push" ))
7777}
Original file line number Diff line number Diff line change 11package domain
22
33import (
4+ "cf"
45 "cf/api"
56 "cf/configuration"
67 "cf/requirements"
@@ -56,4 +57,6 @@ func (cmd *CreateDomain) Run(c *cli.Context) {
5657 }
5758
5859 cmd .ui .Ok ()
60+
61+ cmd .ui .Say ("TIP: Use '%s' to assign it to a space" , terminal .CommandColor (cf .Name ()+ " map-domain" ))
5962}
You can’t perform that action at this time.
0 commit comments