feat: Disable CoW check on XFS (#27)

This commit is contained in:
Kroese 2024-02-09 23:55:09 +01:00 committed by GitHub
parent 73583b33b3
commit 4346464ee8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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