aboutsummaryrefslogtreecommitdiff
path: root/weed/command/fuse_notsupported.go
blob: dc47bd5669d562f73ad5fd75e5ec8101fa9cb058 (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 runFuse(cmd *Command, args []string) bool {
	fmt.Printf("Fuse is not supported on %s %s\n", runtime.GOOS, runtime.GOARCH)

	return true
}