Skip to content

Commit

Permalink
Add missing char shortcut for --space (#2908)
Browse files Browse the repository at this point in the history
  • Loading branch information
eablack authored Jul 3, 2024
1 parent 3914169 commit 47293d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/spaces/transfer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class Transfer extends Command {
`)]

static flags = {
space: flags.string({required: true, description: 'name of space'}),
space: flags.string({required: true, char: 's', description: 'name of space'}),
team: flags.string({required: true, description: 'desired owner of space'}),
}

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/spaces/trusted-ips/remove.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default class Remove extends Command {
`)]

static flags = {
space: flags.string({optional: false, description: 'space to remove rule from'}),
space: flags.string({required: true, char: 's', description: 'space to remove rule from'}),
confirm: flags.string({description: 'set to space name to bypass confirm prompt'}),
}

Expand Down

0 comments on commit 47293d1

Please sign in to comment.