mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 03:17:43 +08:00
Note: This commit is technically broken. However, I need to make a bunch of cmds changes to make this work and I'd rather not bundle both changes into a single commit. License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
25 lines
627 B
Go
25 lines
627 B
Go
// +build linux darwin freebsd netbsd openbsd
|
|
// +build nofuse
|
|
|
|
package commands
|
|
|
|
import (
|
|
cmds "github.com/ipfs/go-ipfs/commands"
|
|
|
|
"gx/ipfs/QmUyfy4QSr3NXym4etEiRyxBLqqAeKHJuRdi8AACxg63fZ/go-ipfs-cmdkit"
|
|
)
|
|
|
|
var MountCmd = &cmds.Command{
|
|
Helptext: cmdkit.HelpText{
|
|
Tagline: "Mounts 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
|
|
`,
|
|
},
|
|
}
|