mirror of
https://github.com/gilbertchen/duplicacy
synced 2025-12-15 07:43:21 +00:00
Fix xattr name format on Linux
On Linux xattr attribute names must have "namespace.attribute" form
This commit is contained in:
@@ -8,6 +8,6 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func excludedByAttribute(attirbutes map[string][]byte) bool {
|
func excludedByAttribute(attirbutes map[string][]byte) bool {
|
||||||
_, ok := attirbutes["duplicacy_exclude"]
|
_, ok := attirbutes["user.duplicacy_exclude"]
|
||||||
return ok
|
return ok
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user