Merge pull request #8837 from anmaxvl/fix-ctr-images-check-quiet

fix: `ctr images check -q` outputs not unpacked images
This commit is contained in:
Fu Wei
2023-07-24 10:39:43 +08:00
committed by GitHub

View File

@@ -300,7 +300,7 @@ var checkCommand = cli.Command{
size, size,
unpacked) unpacked)
} else { } else {
if complete { if complete && unpacked {
fmt.Println(image.Name()) fmt.Println(image.Name())
} }
} }