-
Notifications
You must be signed in to change notification settings - Fork 339
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sigh, namespacing of xattr works differently on *BSD.
Tested on FreeBSD.
- Loading branch information
Showing
3 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// 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 | ||
|
||
//go:build freebsd netbsd | ||
// +build freebsd netbsd | ||
|
||
package duplicacy | ||
|
||
func excludedByAttribute(attributes map[string][]byte) bool { | ||
_, ok := attributes["duplicacy_exclude"] | ||
return ok | ||
} |