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

Compare commits

...

2 Commits

Author SHA1 Message Date
Yegor Gemba
533044fa72 Merge 6df5e682f1 into bb214b6e04 2024-11-27 04:58:35 +00:00
Yegor Gemba
6df5e682f1 Fix xattr name format on Linux
On Linux xattr attribute names must have "namespace.attribute" form
2024-04-07 02:20:10 +03:00

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
}