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