Revert "singularity-tools: don't preserve store content ownership" (#358817)

This commit is contained in:
Someone 2024-11-25 14:15:13 +00:00 committed by GitHub
commit 40f086a50e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,7 +86,7 @@ lib.makeExtensible (final: {
mkdir -p bin ./${builtins.storeDir}
# Loop over the line-separated paths in $layerClosure
while IFS= read -r f; do
cp -r "$f" "./$f"
cp -ar "$f" "./$f"
done < "$layerClosure"
# TODO(@ShamrockLee):