mount_nofuse.go 510 Bytes
Newer Older
1
// +build !windows,nofuse
2 3 4 5

package commands

import (
Jakub Sztandera's avatar
Jakub Sztandera committed
6
	cmds "github.com/ipfs/go-ipfs-cmds"
7 8 9
)

var MountCmd = &cmds.Command{
Steven Allen's avatar
Steven Allen committed
10
	Helptext: cmds.HelpText{
11
		Tagline: "Mounts ipfs to the filesystem (disabled).",
12
		ShortDescription: `
13 14 15 16 17
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:
18
  http://github.com/ipfs/go-ipfs
19 20 21
`,
	},
}