@@ -83,8 +83,8 @@ func pullFromDockerDaemon(ctx context.Context, daemonPullInfo []imageDaemonPullI
83
83
}
84
84
defer cli .Close ()
85
85
cli .NegotiateAPIVersion (ctx )
86
- // Note: ImageSave accepts a ocispec.Platform, BUT the effects it would have on users without client API version 1.48
87
- // which was released in Feb 2025 is unclear. This could make the code more efficient in some cases, but we are
86
+ // Note: ImageSave accepts a ocispec.Platform, but the effects it would have on users without client API version 1.48,
87
+ // which was released in Feb 2025, is unclear. This could make the code more efficient in some cases, but we are
88
88
// avoiding this for now to give users more time to update.
89
89
imageReader , err := cli .ImageSave (ctx , []string {pullInfo .registryOverrideRef })
90
90
if err != nil {
@@ -281,8 +281,8 @@ func Pull(ctx context.Context, cfg PullConfig) (map[transform.Image]ocispec.Mani
281
281
return nil
282
282
}
283
283
}
284
- if desc .MediaType == ocispec . MediaTypeImageManifest || desc . MediaType == DockerMediaTypeManifest {
285
- // Both manifest types can be marshalled into a manifest
284
+ if isManifest ( desc .MediaType ) {
285
+ // Both oci and docker manifest types can be marshalled into a manifest
286
286
// https://github.com/oras-project/oras-go/blob/853e0125ccad32ff691e4ed70e156c7619021bfd/internal/manifestutil/parser.go#L37
287
287
var manifest ocispec.Manifest
288
288
if err := json .Unmarshal (b , & manifest ); err != nil {
@@ -352,15 +352,11 @@ func orasSave(ctx context.Context, imagesInfo []imagePullInfo, cfg PullConfig, d
352
352
copyOpts .Concurrency = cfg .Concurrency
353
353
copyOpts .WithTargetPlatform (imageInfo .manifestDesc .Platform )
354
354
l .Info ("saving image" , "name" , imageInfo .registryOverrideRef , "size" , utils .ByteFormat (float64 (imageInfo .byteSize ), 2 ))
355
- if cfg .CacheDirectory == "" {
356
- pullSrc = remoteRepo
357
- } else {
358
- localCache , err := oci .NewWithContext (ctx , cfg .CacheDirectory )
359
- if err != nil {
360
- return fmt .Errorf ("failed to create oci formatted directory: %w" , err )
361
- }
362
- pullSrc = orasCache .New (remoteRepo , localCache )
355
+ localCache , err := oci .NewWithContext (ctx , cfg .CacheDirectory )
356
+ if err != nil {
357
+ return fmt .Errorf ("failed to create oci formatted directory: %w" , err )
363
358
}
359
+ pullSrc = orasCache .New (remoteRepo , localCache )
364
360
desc , err := oras .Copy (ctx , pullSrc , imageInfo .registryOverrideRef , dst , "" , copyOpts )
365
361
if err != nil {
366
362
return fmt .Errorf ("failed to copy: %w" , err )
0 commit comments