From 56eb2b00d5d24f45de2e12db8c4327fd550cc68a Mon Sep 17 00:00:00 2001 From: Dominic Della Valle Date: Wed, 23 May 2018 10:49:58 -0400 Subject: [PATCH] remove nofuse build constraints License: MIT Signed-off-by: Dominic Della Valle --- core/commands/mount_nofuse.go | 3 +-- core/commands/mount_unix.go | 3 +-- fuse/node/mount_nofuse.go | 3 +-- fuse/node/mount_unix.go | 6 +++--- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/core/commands/mount_nofuse.go b/core/commands/mount_nofuse.go index 056beeaa9a0..5203d0f78cc 100644 --- a/core/commands/mount_nofuse.go +++ b/core/commands/mount_nofuse.go @@ -1,5 +1,4 @@ -// +build linux darwin freebsd netbsd openbsd dragonfly -// +build nofuse +// +build !windows,nofuse package commands diff --git a/core/commands/mount_unix.go b/core/commands/mount_unix.go index eeb9782d2d4..84abbdae22a 100644 --- a/core/commands/mount_unix.go +++ b/core/commands/mount_unix.go @@ -1,5 +1,4 @@ -// +build linux darwin freebsd netbsd openbsd -// +build !nofuse +// +build !windows,!nofuse package commands diff --git a/fuse/node/mount_nofuse.go b/fuse/node/mount_nofuse.go index 60c1b986cae..7f824ef3e12 100644 --- a/fuse/node/mount_nofuse.go +++ b/fuse/node/mount_nofuse.go @@ -1,5 +1,4 @@ -// +build linux darwin freebsd netbsd openbsd dragonfly -// +build nofuse +// +build !windows,nofuse package node diff --git a/fuse/node/mount_unix.go b/fuse/node/mount_unix.go index af79a74069c..2a20452bc76 100644 --- a/fuse/node/mount_unix.go +++ b/fuse/node/mount_unix.go @@ -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")