mirror of https://github.com/spf13/afero.git
Fix syscall.EBADFD at FreeBSD
Solve this: https://github.com/spf13/afero/issues/68 go get github.com/spf13/afero # github.com/spf13/afero gocode/src/github.com/spf13/afero/const_win_unix.go:22: undefined: syscall.EBADFD
This commit is contained in:
parent
4c1d2aade6
commit
7e073c0c70
|
@ -11,7 +11,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
// +build darwin openbsd
|
||||
// +build darwin openbsd freebsd
|
||||
|
||||
package afero
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
// limitations under the License.
|
||||
// +build !darwin
|
||||
// +build !openbsd
|
||||
// +build !freebsd
|
||||
|
||||
package afero
|
||||
|
||||
|
|
Loading…
Reference in New Issue