-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Use single dash for single letter flags (#477)
Signed-off-by: Josh Soref <[email protected]> Signed-off-by: Josh Soref <[email protected]>
- Loading branch information
Showing
7 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ auth0 users create [flags] | |
auth0 users create | ||
auth0 users create --name "John Doe" | ||
auth0 users create -n "John Doe" --email [email protected] | ||
auth0 users create -n "John Doe" --e [email protected] --connection "Username-Password-Authentication" | ||
auth0 users create -n "John Doe" -e [email protected] --connection "Username-Password-Authentication" | ||
``` | ||
|
||
### Options | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -194,7 +194,7 @@ func createUserCmd(cli *cli) *cobra.Command { | |
Example: `auth0 users create | ||
auth0 users create --name "John Doe" | ||
auth0 users create -n "John Doe" --email [email protected] | ||
auth0 users create -n "John Doe" --e [email protected] --connection "Username-Password-Authentication"`, | ||
auth0 users create -n "John Doe" -e [email protected] --connection "Username-Password-Authentication"`, | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
// Select from the available connection types | ||
// Users API currently support database connections | ||
|