Commit 41a725c2 authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

Merge pull request #21 from verokarhu/master

disable mount command on windows for now
parents 639d196a fef46e44
// +build linux darwin freebsd
package main
import (
......
package main
import (
"errors"
"github.com/gonuts/flag"
"github.com/jbenet/commander"
)
var cmdIpfsMount = &commander.Command{
UsageLine: "mount",
Short: "Mount an ipfs read-only mountpoint.",
Long: `Not yet implemented on windows.`,
Run: mountCmd,
Flag: *flag.NewFlagSet("ipfs-mount", flag.ExitOnError),
}
func mountCmd(c *commander.Command, inp []string) error {
return errors.New("mount not yet implemented on windows")
}
// A Go mirror of libfuse's hello.c
// +build linux darwin freebsd
package readonly
import (
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment