Skip to content

Commit

Permalink
fixed hauler login typo (#299)
Browse files Browse the repository at this point in the history
* updated hauler login typo

* updated hauler login descs
  • Loading branch information
zackbradys authored Aug 23, 2024
1 parent 2095882 commit d6b3c94
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/hauler/cli/login.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ type Opts struct {

func (o *Opts) AddArgs(cmd *cobra.Command) {
f := cmd.Flags()
f.StringVarP(&o.Username, "username", "u", "", "Username")
f.StringVarP(&o.Password, "password", "p", "", "Password")
f.BoolVarP(&o.PasswordStdin, "password-stdin", "", false, "Take the password from stdin")
f.StringVarP(&o.Username, "username", "u", "", "Username to use for authentication")
f.StringVarP(&o.Password, "password", "p", "", "Password to use for authentication")
f.BoolVar(&o.PasswordStdin, "password-stdin", false, "Password to use for authentication (from stdin)")
}

func addLogin(parent *cobra.Command) {
Expand Down

0 comments on commit d6b3c94

Please sign in to comment.