aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_notsupported.go
blob: 1e5c9f53d6b588e7a7ec0863f28d2868043f733e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//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
}