diff --git a/core/commands/mount_nofuse.go b/core/commands/mount_nofuse.go index 60c2b0101..4613aaabd 100644 --- a/core/commands/mount_nofuse.go +++ b/core/commands/mount_nofuse.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and nofuse +// +build linux darwin freebsd +// +build nofuse package commands diff --git a/core/commands/mount_unix.go b/core/commands/mount_unix.go index 987cde5c4..4f77f3892 100644 --- a/core/commands/mount_unix.go +++ b/core/commands/mount_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse package commands diff --git a/fuse/ipns/mount_unix.go b/fuse/ipns/mount_unix.go index 37eb8aa10..fe9012b3b 100644 --- a/fuse/ipns/mount_unix.go +++ b/fuse/ipns/mount_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse package ipns diff --git a/fuse/readonly/mount_unix.go b/fuse/readonly/mount_unix.go index 54e2ae47a..9c9ebcf0d 100644 --- a/fuse/readonly/mount_unix.go +++ b/fuse/readonly/mount_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse package readonly diff --git a/fuse/readonly/readonly_unix.go b/fuse/readonly/readonly_unix.go index 159dd0718..778cfef6b 100644 --- a/fuse/readonly/readonly_unix.go +++ b/fuse/readonly/readonly_unix.go @@ -1,4 +1,5 @@ -// +build (linux darwin freebsd) and !nofuse +// +build linux darwin freebsd +// +build !nofuse // package fuse/readonly implements a fuse filesystem to access files // stored inside of ipfs.