Make fuse command linux/MacOS only (#6811)

This commit is contained in:
Weihao Jiang
2025-05-23 23:21:46 +08:00
committed by GitHub
parent 2e1506c31e
commit ea70d17c5f
4 changed files with 280 additions and 261 deletions

View File

@@ -0,0 +1,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
}