Commit c2eb0aa5 authored by Yueh-Shun Li's avatar Yueh-Shun Li
Browse files

singularity-tools: don't preserve store content ownership

Don't preserve store content ownership to prepare for unprivileged-build
workflow.
parent c229d14f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ lib.makeExtensible (final: {
            mkdir -p bin ./${builtins.storeDir}
            # Loop over the line-separated paths in $layerClosure
            while IFS= read -r f; do
              cp -ar "$f" "./$f"
              cp -r "$f" "./$f"
            done < "$layerClosure"

            # TODO(@ShamrockLee):