Skip to content

Commit

Permalink
Revert "feat: use link instead of copy for blobs in oci_image_index" (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
thesayyn authored Mar 15, 2024
1 parent a275068 commit 31521df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oci/private/image_index.sh.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 31521df

Please sign in to comment.