seaweedfs/weed/command/mount2_notsupported.go

16 lines
269 B
Go
Raw Normal View History

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