Skip to content

Commit

Permalink
[v8] fix help output for --access-request flag. (#15053)
Browse files Browse the repository at this point in the history
fix help output for --access-request flag.
  • Loading branch information
hatched committed Sep 6, 2022
1 parent 0fa3a07 commit 0bc9f41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tool/tctl/common/access_request_command.go
Expand Up @@ -309,7 +309,7 @@ func (c *AccessRequestCommand) Delete(ctx context.Context, client auth.ClientI)
fmt.Println("the user's access to these roles. If you would like to lock the user's access to the")
fmt.Printf("requested roles instead, you can run:\n\n")
for _, reqID := range approvedTokens {
fmt.Printf("> tctl lock --access_request %s\n", reqID)
fmt.Printf("> tctl lock --access-request %s\n", reqID)
}
fmt.Printf("\nTo disregard this warning and delete the request anyway, re-run this command with --force.\n\n")
}
Expand Down

0 comments on commit 0bc9f41

Please sign in to comment.