From 31521dfd143e52342ac917303661abe2d2bb424f Mon Sep 17 00:00:00 2001 From: Sahin Yort Date: Fri, 15 Mar 2024 12:24:30 -0700 Subject: [PATCH] Revert "feat: use link instead of copy for blobs in oci_image_index" (#525) --- oci/private/image_index.sh.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oci/private/image_index.sh.tpl b/oci/private/image_index.sh.tpl index e86b1046..2d81586e 100644 --- a/oci/private/image_index.sh.tpl +++ b/oci/private/image_index.sh.tpl @@ -35,7 +35,7 @@ function copy_blob() { local blob_image_relative_path="$3" local dest_path="${output_path}/${blob_image_relative_path}" mkdirp "$(dirname "${dest_path}")" - "${COREUTILS}" ln -f "${image_path}/${blob_image_relative_path}" "${dest_path}" + "${COREUTILS}" cat "${image_path}/${blob_image_relative_path}" > "${dest_path}" } function create_oci_layout() {