From d5aecc69021f0d147ed0091f4bbf980411c03d92 Mon Sep 17 00:00:00 2001 From: bryan Date: Mon, 2 Jun 2025 18:51:40 -0400 Subject: [PATCH] Disable CoW recursively in ~/.jriver --- installJRMC | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installJRMC b/installJRMC index 41d8ed8..465d14a 100755 --- a/installJRMC +++ b/installJRMC @@ -1541,7 +1541,7 @@ disable_btrfs_cow() { # Disable btrfs CoW if [[ $(stat -f -c %T "$mc_user_path") == "btrfs" ]]; then - if execute chattr +C "$mc_user_path"; then + if execute chattr -R +C "$mc_user_path"; then echo "Disabled btrfs CoW for $mc_user_path directory" fi fi