From 81496621c157151ff373164f40bc16421d5f8591 Mon Sep 17 00:00:00 2001 From: Sean Yeh <109418+seanyeh@users.noreply.github.com> Date: Sat, 21 Sep 2024 10:01:59 -0500 Subject: [PATCH] Fix login --shared help text --- cmd/esc/cli/login.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/esc/cli/login.go b/cmd/esc/cli/login.go index 3401b53b..24d8b880 100644 --- a/cmd/esc/cli/login.go +++ b/cmd/esc/cli/login.go @@ -126,7 +126,7 @@ func newLoginCmd(esc *escCommand) *cobra.Command { cmd.Flags().StringVarP(&backendURL, "cloud-url", "c", "", "A cloud URL to log in to") cmd.Flags().StringVar(&defaultOrg, "default-org", "", "A default org to associate with the login.") cmd.Flags().BoolVar(&insecure, "insecure", false, "Allow insecure server connections when using SSL") - cmd.Flags().BoolVar(&shared, "shared", false, "Log in to the account in use by the `pulumi` CLI") + cmd.Flags().BoolVar(&shared, "shared", false, "Log in to the account in use by the pulumi CLI") return cmd }