WIP: [#469] cli: Fix bug with name option for container list command #469
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ var listContainersCmd = &cobra.Command{
|
|||
}
|
||||
|
||||
cnr := res.Container()
|
||||
if cnrName := containerSDK.Name(cnr); flagVarListName != "" && cnrName != flagVarListName {
|
||||
if cnrName := containerSDK.Name(cnr); flagVarListName != "" && !strings.Contains(cnrName, flagVarListName) {
|
||||
|
||||
continue
|
||||
}
|
||||
cmd.Println(cnrID.String())
|
||||
|
@ -93,7 +93,7 @@ func initContainerListContainersCmd() {
|
|||
flags := listContainersCmd.Flags()
|
||||
|
||||
flags.StringVar(&flagVarListName, flagListName, "",
|
||||
"List containers by the attribute name",
|
||||
"List containers by the attribute name or by its part",
|
||||
)
|
||||
flags.StringVar(&flagVarListContainerOwner, flagListContainerOwner, "",
|
||||
"Owner of containers (omit to use owner from private key)",
|
||||
|
|
Loading…
Add table
Reference in a new issue
Well, we also had #224 (comment)
I think we need to change the help instead.
Fixed. Anyway, it seems that using not whole name but its part is also useful
This could be useful, but also makes it impossible to search for the exact name.
The exact name was the original requirement for this task #113