We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dfff44 commit 09de864Copy full SHA for 09de864
enterprise/cli/groupcreate.go
@@ -37,7 +37,7 @@ func (r *RootCmd) groupCreate() *serpent.Command {
37
38
err = codersdk.GroupNameValid(inv.Args[0])
39
if err != nil {
40
- return xerrors.Errorf("group name: %w", err)
+ return xerrors.Errorf("group name %q is invalid: %w", inv.Args[0], err)
41
}
42
43
group, err := client.CreateGroup(ctx, org.ID, codersdk.CreateGroupRequest{
0 commit comments