Skip to content

Commit

Permalink
Fix auth flag parenthesis (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
imnltsa authored Apr 6, 2024
1 parent 58e9a18 commit f68a119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func loginCmd() *cobra.Command {
}

cmd.Flags().StringVarP(&email, "email", "e", "", "email address for the Apple ID (required)")
cmd.Flags().StringVarP(&password, "password", "p", "", "password for the Apple ID (required")
cmd.Flags().StringVarP(&password, "password", "p", "", "password for the Apple ID (required)")
cmd.Flags().StringVar(&authCode, "auth-code", "", "2FA code for the Apple ID")

_ = cmd.MarkFlagRequired("email")
Expand Down

0 comments on commit f68a119

Please sign in to comment.