Merge pull request #887 from baude/kpod_fix_rmi_by_id
cmd/kpod/rmi.go: Fix deletion by ID
This commit is contained in:
commit
1eb9f8ed8c
1 changed files with 2 additions and 2 deletions
|
@ -79,10 +79,10 @@ func rmiCmd(c *cli.Context) error {
|
|||
if err2 != nil {
|
||||
return err
|
||||
}
|
||||
fmt.Printf("untagged: %s", name)
|
||||
fmt.Printf("untagged: %s\n", name)
|
||||
}
|
||||
|
||||
if len(image.Names) > 0 {
|
||||
if len(image.Names) > 1 {
|
||||
continue
|
||||
}
|
||||
id, err := images.RemoveImage(image, store)
|
||||
|
|
Loading…
Reference in a new issue