mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-01 00:23:56 +08:00 
			
		
		
		
	imagetools: handle manifest with nil platform
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
		| @@ -59,7 +59,9 @@ func NewPrinter(ctx context.Context, opt Opt, name string, format string) (*Prin | ||||
| 	switch manifest.MediaType { | ||||
| 	case images.MediaTypeDockerSchema2ManifestList, ocispecs.MediaTypeImageIndex: | ||||
| 		for _, m := range index.Manifests { | ||||
| 			pforms = append(pforms, *m.Platform) | ||||
| 			if m.Platform != nil { | ||||
| 				pforms = append(pforms, *m.Platform) | ||||
| 			} | ||||
| 		} | ||||
| 	default: | ||||
| 		pforms = append(pforms, platforms.DefaultSpec()) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tonis Tiigi
					Tonis Tiigi