Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Add list users command #77

Merged
merged 2 commits into from
Jul 29, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Improve command descriptions
  • Loading branch information
cmoog committed Jul 29, 2020
commit 5e43b71261f5715d726e98ce685c526923670e4c
2 changes: 1 addition & 1 deletion cmd/coder/envs.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type envsCmd struct {
func (cmd envsCmd) Spec() cli.CommandSpec {
return cli.CommandSpec{
Name: "envs",
Desc: "get a list of active environment",
Desc: "get a list of environments owned by the authenticated user",
}
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/coder/logout.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type logoutCmd struct {
func (cmd logoutCmd) Spec() cli.CommandSpec {
return cli.CommandSpec{
Name: "logout",
Desc: "remote local authentication credentials (if any)",
Desc: "remove local authentication credentials (if any)",
}
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/coder/shell.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func (cmd *shellCmd) Spec() cli.CommandSpec {
return cli.CommandSpec{
Name: "sh",
Usage: "<env name> [<command [args...]>]",
Desc: "executes a remote command on the environment\nIf no command is specified, the default shell is opened.",
Desc: "execute a remote command on the environment\nIf no command is specified, the default shell is opened.",
RawArgs: true,
}
}
Expand Down