seaweedfs/weed/command/mount_notsupported.go

16 lines
247 B
Go
Raw Normal View History

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