Skip to content

Commit 405afc9

Browse files
committed
fix short desc
1 parent f8b97d9 commit 405afc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/organization.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func (r *RootCmd) currentOrganization() *clibase.Cmd {
4848
)
4949
cmd := &clibase.Cmd{
5050
Use: "show [current|me|uuid]",
51-
Short: "Show organization information. By default, if no argument is provided, the current cli configured organization is shown.",
51+
Short: "Show the organization, if no argument is given, the organization currently in use will be shown.",
5252
Middleware: clibase.Chain(
5353
r.InitClient(client),
5454
clibase.RequireRangeArgs(0, 1),
@@ -64,7 +64,7 @@ func (r *RootCmd) currentOrganization() *clibase.Cmd {
6464
},
6565
Handler: func(inv *clibase.Invocation) error {
6666
orgArg := "current"
67-
if len(inv.Args) == 1 {
67+
if len(inv.Args) >= 1 {
6868
orgArg = inv.Args[0]
6969
}
7070

0 commit comments

Comments
 (0)