retire mount v1

This commit is contained in:
chrislu
2022-02-27 02:57:27 -08:00
parent 22362f6495
commit aa9eef81e6
7 changed files with 43 additions and 416 deletions

View File

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