kubo/fuse/node/mount_notsupp.go
Fazlul Shahriar cac753bb18
fix build on Plan 9
Fixes #7575
Fixes #7671
2020-09-23 22:27:01 -04:00

14 lines
290 B
Go

// +build !nofuse,openbsd !nofuse,netbsd !nofuse,plan9
package node
import (
"errors"
core "github.com/ipfs/go-ipfs/core"
)
func Mount(node *core.IpfsNode, fsdir, nsdir string) error {
return errors.New("FUSE not supported on OpenBSD or NetBSD. See #5334 (https://git.io/fjMuC).")
}