Skip to content

Commit 4e7140d

Browse files
committed
Merge pull request #857 from tonistiigi/nofuse-fix
Fix nofuse build tags syntax
2 parents 6374d5f + 0f69823 commit 4e7140d

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

core/commands/mount_darwin.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// +build !nofuse
2+
13
package commands
24

35
import (

core/commands/mount_nofuse.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// +build (linux darwin freebsd) and nofuse
1+
// +build linux darwin freebsd
2+
// +build nofuse
23

34
package commands
45

core/commands/mount_unix.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// +build (linux darwin freebsd) and !nofuse
1+
// +build linux darwin freebsd
2+
// +build !nofuse
23

34
package commands
45

fuse/ipns/mount_unix.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// +build (linux darwin freebsd) and !nofuse
1+
// +build linux darwin freebsd
2+
// +build !nofuse
23

34
package ipns
45

fuse/readonly/mount_unix.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// +build (linux darwin freebsd) and !nofuse
1+
// +build linux darwin freebsd
2+
// +build !nofuse
23

34
package readonly
45

fuse/readonly/readonly_unix.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
// +build (linux darwin freebsd) and !nofuse
1+
// +build linux darwin freebsd
2+
// +build !nofuse
23

34
// package fuse/readonly implements a fuse filesystem to access files
45
// stored inside of ipfs.

0 commit comments

Comments
 (0)