-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
slightly more ergonomic CLI ordering (#537)
- Loading branch information
1 parent
8195736
commit 5c29a65
Showing
3 changed files
with
8 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ We use the `zrok admin create org-member` command to add members to organization | |
$ zrok admin create org-member | ||
Error: accepts 2 arg(s), received 0 | ||
Usage: | ||
zrok admin create org-member <accountEmail> <organizationToken> [flags] | ||
zrok admin create org-member <organizationToken> <accountEmail> [flags] | ||
Aliases: | ||
org-member, member | ||
|
@@ -81,7 +81,7 @@ Global Flags: | |
Like this: | ||
|
||
``` | ||
$ zrok admin create org-member [email protected] gK1XRvthq7ci | ||
$ zrok admin create org-member gK1XRvthq7ci [email protected] | ||
[ 0.006] INFO main.(*adminCreateOrgMemberCommand).run: added '[email protected]' to organization 'gK1XRvthq7ci | ||
``` | ||
|
||
|