1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-06 00:03:38 +00:00

Fix xattr name format on Linux

On Linux xattr attribute names must have "namespace.attribute" form
This commit is contained in:
Yegor Gemba
2024-04-07 02:20:10 +03:00
committed by GitHub
parent 0d3ee4186c
commit 6df5e682f1

View File

@@ -8,6 +8,6 @@ import (
)
func excludedByAttribute(attirbutes map[string][]byte) bool {
_, ok := attirbutes["duplicacy_exclude"]
_, ok := attirbutes["user.duplicacy_exclude"]
return ok
}