1
0
mirror of https://github.com/gilbertchen/duplicacy synced 2025-12-23 03:33:15 +00:00

Sigh, namespacing of xattr works differently on *BSD.

Tested on FreeBSD.
This commit is contained in:
John K. Luebs
2023-10-04 22:06:00 -05:00
parent bd2849183c
commit e30bf3b9bc
3 changed files with 17 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
// Copyright (c) Acrosync LLC. All rights reserved.
// Free for personal use and commercial trial
// Commercial use requires per-user licenses available from https://duplicacy.com
package duplicacy
func excludedByAttribute(attributes map[string][]byte) bool {
_, ok := attributes["user.duplicacy_exclude"]
return ok
}