Skip to content

Commit

Permalink
Documentation typos
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmarsh committed Oct 7, 2019
1 parent b761dcc commit d50a312
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ var authUrl string

func init() {
RootCmd.AddCommand(authCmd)
authCmd.Flags().StringVarP(&authUrl, "url-override", "u", "", "DCE version to deploy (Defaults to latest)")
authCmd.Flags().StringVarP(&authUrl, "url-override", "u", "", "Override the DCE login url")
}

var authCmd = &cobra.Command{
Use: "auth",
Short: "Configure DCE cli",
Short: "Login to dce",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("Opening web browser. Please login. You will be provided with credentials to copy/paste into this terminal.")
fmt.Println("Opening web browser. Please login and copy/paste the provided credentials into this terminal.")

if authUrl == "" {
authUrl = *config.Auth.LoginUrl
Expand Down

0 comments on commit d50a312

Please sign in to comment.