Skip to content

Commit

Permalink
fix(registry): make name required on namespace creation (#904)
Browse files Browse the repository at this point in the history
  • Loading branch information
scaleway-bot authored Apr 23, 2020
1 parent 740880f commit 37e9f5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ USAGE:
scw registry namespace create [arg=value ...]

ARGS:
[name] Define a namespace name
name Define a namespace name
[description] Define a description
[is-public] Define the default visibility policy
[organization-id] Organization ID to use. If none is passed will use default organization ID from the config
Expand Down
2 changes: 1 addition & 1 deletion internal/namespaces/registry/v1/registry_cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func registryNamespaceCreate() *core.Command {
{
Name: "name",
Short: `Define a namespace name`,
Required: false,
Required: true,
Positional: false,
},
{
Expand Down

0 comments on commit 37e9f5c

Please sign in to comment.