feat: Disable CoW check on XFS (#629)

This commit is contained in:
Kroese
2024-02-09 23:53:18 +01:00
committed by GitHub
parent 13d60b7f47
commit 0cca9c5f83
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ getSize() {
isCow() {
local FS=$1
if [[ "${FS,,}" == "xfs" || "${FS,,}" == "btrfs" || "${FS,,}" == "bcachefs" ]]; then
if [[ "${FS,,}" == "btrfs" ]]; then
return 0
fi