Replace push with update in help text

At one point `pulumi update` was spelled `pulumi push` and we wrote
some help documentation about that. When we changed to `pulumi update`
we did not revise the documentation.

Fixes #925
This commit is contained in:
Matt Ellis 2018-02-13 16:39:13 -08:00
parent e0d3eae16f
commit 993caf7693

View file

@ -21,7 +21,7 @@ func newStackSelectCmd() *cobra.Command {
Use: "select [<stack-name>]",
Short: "Switch the current workspace to the given stack",
Long: "Switch the current workspace to the given stack. This allows you to use\n" +
"other commands like `config`, `preview`, and `push` without needing to specify the\n" +
"other commands like `config`, `preview`, and `update` without needing to specify the\n" +
"stack name each and every time.\n" +
"\n" +
"If no <stack> argument is supplied, the current stack is printed.",