Skip to content

Commit 261d552

Browse files
committed
fix: update admins remove docs to show multiple email support
Closes #112
1 parent 6867852 commit 261d552

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

cmd/admins.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,13 @@ var adminsAddCmd = &cobra.Command{
110110

111111
// adminsRemoveCmd represents the admins remove command
112112
var adminsRemoveCmd = &cobra.Command{
113-
Use: "remove <email>",
114-
Short: "remove an administrator from the account",
113+
Use: "remove <email>...",
114+
Short: "remove administrators from the account",
115115
Long: `*Requires admin permissions.*
116-
Updates the application Cloudformation stack to remove an administrators.`,
116+
Updates the account Cloudformation stack to remove administrators.`,
117117
DisableFlagsInUseLine: true,
118118
Args: cobra.MinimumNArgs(1),
119+
Example: "apppack admins remove user1@example.com user2@example.com",
119120
Run: func(_ *cobra.Command, args []string) {
120121
for _, email := range args {
121122
if !validateEmail(email) {

0 commit comments

Comments
 (0)