aboutsummaryrefslogtreecommitdiff
path: root/go/weed/mount_notsupported.go
diff options
context:
space:
mode:
Diffstat (limited to 'go/weed/mount_notsupported.go')
-rw-r--r--go/weed/mount_notsupported.go15
1 files changed, 0 insertions, 15 deletions
diff --git a/go/weed/mount_notsupported.go b/go/weed/mount_notsupported.go
deleted file mode 100644
index bc77ffa16..000000000
--- a/go/weed/mount_notsupported.go
+++ /dev/null
@@ -1,15 +0,0 @@
-// +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
-}