seaweedfs/weed/command/mount_notsupported.go

16 lines
247 B
Go
Raw Normal View History

2022-02-14 21:48:48 +00:00
//go:build !linux && !darwin
// +build !linux,!darwin
2022-02-14 10:59:51 +00:00
package command
import (
"fmt"
"runtime"
)
2022-02-27 11:03:19 +00:00
func runMount(cmd *Command, args []string) bool {
2022-02-14 10:59:51 +00:00
fmt.Printf("Mount is not supported on %s %s\n", runtime.GOOS, runtime.GOARCH)
return true
}