aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount2_notsupported.go
blob: 075b7343673569831f6ce3a03f42daa02109381a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//go:build !linux && !darwin
// +build !linux,!darwin

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
}