We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83e010c commit 87ba458Copy full SHA for 87ba458
.github/workflows/build.yml
@@ -21,6 +21,7 @@ jobs:
21
run: |
22
GOOS=freebsd go build
23
GOOS=windows go build
24
+ GOOS=openbsd go build
25
go build -v .
26
27
- name: Test
xattr_unsupported.go
@@ -10,7 +10,7 @@ import (
10
11
const (
12
// We need to use the default for non supported operating systems
13
- ENOATTR = syscall.ENODATA
+ ENOATTR = syscall.Errno(0x59)
14
)
15
16
// XATTR_SUPPORTED will be true if the current platform is supported
0 commit comments