Merge pull request #5033 from djdv/fix/unsupported-build

build: remove fuse platform constraints
This commit is contained in:
Whyrusleeping 2018-05-30 10:42:42 +08:00 committed by GitHub
commit 9bb6174847
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 9 deletions

View File

@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd dragonfly
// +build nofuse
// +build !windows,nofuse
package commands

View File

@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd
// +build !nofuse
// +build !windows,!nofuse
package commands

View File

@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd dragonfly
// +build nofuse
// +build !windows,nofuse
package node

View File

@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd
// +build !nofuse
// +build !windows,!nofuse
package node
@ -9,11 +8,12 @@ import (
"strings"
"sync"
logging "gx/ipfs/QmRb5jh8z2E8hMGN2tkvs1yHynUanqnZ3UeKwgN1i9P1F8/go-log"
core "github.com/ipfs/go-ipfs/core"
ipns "github.com/ipfs/go-ipfs/fuse/ipns"
mount "github.com/ipfs/go-ipfs/fuse/mount"
rofs "github.com/ipfs/go-ipfs/fuse/readonly"
logging "gx/ipfs/QmRb5jh8z2E8hMGN2tkvs1yHynUanqnZ3UeKwgN1i9P1F8/go-log"
)
var log = logging.Logger("node")