From ba7bec1fe1776888bf4ccbb3e2ca90e0609e358b Mon Sep 17 00:00:00 2001 From: Raymond Barbiero Date: Sat, 12 Apr 2025 19:41:43 -0400 Subject: [PATCH] chore(clan/cli): remove --reflink=auto --- pkgs/clan-cli/clan_cli/templates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/clan-cli/clan_cli/templates.py b/pkgs/clan-cli/clan_cli/templates.py index 4841e19df..8e1d78a25 100644 --- a/pkgs/clan-cli/clan_cli/templates.py +++ b/pkgs/clan-cli/clan_cli/templates.py @@ -169,7 +169,7 @@ class InputPrio: 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)])