Skip to content

Commit

Permalink
Merge pull request #5033 from djdv/fix/unsupported-build
Browse files Browse the repository at this point in the history
build: remove fuse platform constraints
  • Loading branch information
whyrusleeping authored May 30, 2018
2 parents 611d572 + 56eb2b0 commit 9bb6174
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
3 changes: 1 addition & 2 deletions core/commands/mount_nofuse.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd dragonfly
// +build nofuse
// +build !windows,nofuse

package commands

Expand Down
3 changes: 1 addition & 2 deletions core/commands/mount_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd
// +build !nofuse
// +build !windows,!nofuse

package commands

Expand Down
3 changes: 1 addition & 2 deletions fuse/node/mount_nofuse.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd dragonfly
// +build nofuse
// +build !windows,nofuse

package node

Expand Down
6 changes: 3 additions & 3 deletions fuse/node/mount_unix.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// +build linux darwin freebsd netbsd openbsd
// +build !nofuse
// +build !windows,!nofuse

package node

Expand All @@ -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")
Expand Down

0 comments on commit 9bb6174

Please sign in to comment.