diff --git a/Sources/Containerization/Image/ImageStore/ImageStore+OCILayout.swift b/Sources/Containerization/Image/ImageStore/ImageStore+OCILayout.swift index cf255818..62225d2c 100644 --- a/Sources/Containerization/Image/ImageStore/ImageStore+OCILayout.swift +++ b/Sources/Containerization/Image/ImageStore/ImageStore+OCILayout.swift @@ -62,7 +62,7 @@ extension ImageStore { client.setImageReferenceAnnotation(descriptor: &descriptor, reference: image.reference) saved.append(descriptor) } - try client.createOCILayoutStructre(directory: out, manifests: saved) + try client.createOCILayoutStructure(directory: out, manifests: saved) } /// Imports one or more images and their associated layers from an OCI Image Layout directory. diff --git a/Sources/ContainerizationOCI/Client/LocalOCILayoutClient.swift b/Sources/ContainerizationOCI/Client/LocalOCILayoutClient.swift index 1489aeef..07b75439 100644 --- a/Sources/ContainerizationOCI/Client/LocalOCILayoutClient.swift +++ b/Sources/ContainerizationOCI/Client/LocalOCILayoutClient.swift @@ -132,7 +132,7 @@ extension LocalOCILayoutClient { return index } - package func createOCILayoutStructre(directory: URL, manifests: [Descriptor]) throws { + package func createOCILayoutStructure(directory: URL, manifests: [Descriptor]) throws { let fm = FileManager.default let encoder = JSONEncoder() encoder.outputFormatting = [.withoutEscapingSlashes]