1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-20 02:21:48 +08:00
Files
kubo/core/commands/mount_nofuse.go
Jesse Weinstein 1d6a47bf93 Make all Taglines use imperative mood
License: MIT
Signed-off-by: Jesse Weinstein <jesse@wefu.org>
2016-08-04 16:45:59 -07:00

23 lines
550 B
Go

// +build linux darwin freebsd netbsd openbsd
// +build nofuse
package commands
import (
cmds "github.com/ipfs/go-ipfs/commands"
)
var MountCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Mount IPFS to the filesystem (disabled).",
ShortDescription: `
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:
http://github.com/ipfs/go-ipfs
`,
},
}