Skip to content

Commit e13bccb

Browse files
committed
rm !
1 parent d24cdd7 commit e13bccb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/create.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ func (r *RootCmd) create() *serpent.Command {
6666
}
6767
_, err = client.WorkspaceByOwnerAndName(inv.Context(), workspaceOwner, workspaceName, codersdk.WorkspaceOptions{})
6868
if err == nil {
69-
return xerrors.Errorf("a workspace already exists named %q!", workspaceName)
69+
return xerrors.Errorf("a workspace already exists named %q", workspaceName)
7070
}
7171
return nil
7272
},
@@ -81,7 +81,7 @@ func (r *RootCmd) create() *serpent.Command {
8181
}
8282
_, err = client.WorkspaceByOwnerAndName(inv.Context(), workspaceOwner, workspaceName, codersdk.WorkspaceOptions{})
8383
if err == nil {
84-
return xerrors.Errorf("a workspace already exists named %q!", workspaceName)
84+
return xerrors.Errorf("a workspace already exists named %q", workspaceName)
8585
}
8686

8787
var sourceWorkspace codersdk.Workspace

0 commit comments

Comments
 (0)