1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 19:44:01 +08:00

remove nofuse build constraints

License: MIT
Signed-off-by: Dominic Della Valle <ddvpublic@gmail.com>
This commit is contained in:
Dominic Della Valle
2018-05-23 10:49:58 -04:00
parent 611d572ef2
commit 56eb2b00d5
4 changed files with 6 additions and 9 deletions

View File

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

View File

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

View File

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

View File

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