mount_nofuse.go 536 Bytes
Newer Older
Tonis Tiigi's avatar
Tonis Tiigi committed
1 2
// +build linux darwin freebsd
// +build nofuse
3 4 5 6

package commands

import (
7
	cmds "github.com/ipfs/go-ipfs/commands"
8 9 10 11
)

var MountCmd = &cmds.Command{
	Helptext: cmds.HelpText{
rht's avatar
rht committed
12
		Tagline: "Mounts IPFS to the filesystem (disabled).",
13
		ShortDescription: `
14 15 16 17 18
This version of ipfs is compiled without fuse support, which is required
for mounting. If you'd like to be able to mount, please use a version of
ipfs compiled with fuse.

For the latest instructions, please check the project's repository:
19
  http://github.com/ipfs/go-ipfs
20 21 22
`,
	},
}