chore(clan/cli): remove --reflink=auto

This commit is contained in:
Raymond Barbiero
2025-04-12 19:41:43 -04:00
parent 2807fb6244
commit ba7bec1fe1

View File

@@ -169,7 +169,7 @@ class InputPrio:
def copy_from_nixstore(src: Path, dest: Path) -> None: def copy_from_nixstore(src: Path, dest: Path) -> None:
run(["cp", "-r", "--reflink=auto", str(src), str(dest)]) run(["cp", "-r", str(src), str(dest)])
run(["chmod", "-R", "u+w", str(dest)]) run(["chmod", "-R", "u+w", str(dest)])