releasing 0.58 to handle control+c interrupts.

compilable now. but FUSE mount is not working.
This commit is contained in:
Chris Lu
2014-05-13 11:25:48 -07:00
parent 750e1aaaa5
commit dc24bad791
8 changed files with 221 additions and 166 deletions

View File

@@ -0,0 +1,15 @@
// +build !linux
// +build !darwin
package main
import (
"fmt"
"runtime"
)
func runMount(cmd *Command, args []string) bool {
fmt.Printf("Mount is not supported on %s %s\n", runtime.GOOS, runtime.GOARCH)
return true
}