diff --git a/staging/operator-registry/pkg/image/execregistry/registry.go b/staging/operator-registry/pkg/image/execregistry/registry.go index 9d8468f14a..f94a63b02e 100644 --- a/staging/operator-registry/pkg/image/execregistry/registry.go +++ b/staging/operator-registry/pkg/image/execregistry/registry.go @@ -41,7 +41,7 @@ func (r *Registry) Pull(ctx context.Context, ref image.Reference) error { // Unpack writes the unpackaged content of an image to a directory. // If the referenced image does not exist in the registry, an error is returned. func (r *Registry) Unpack(ctx context.Context, ref image.Reference, dir string) error { - return r.cmd.Unpack(ref.String(), "/", dir) + return r.cmd.Unpack(ref.String(), "/.", dir) } // Labels gets the labels for an image reference.