mount_notsupported.go 247 B

123456789101112131415
  1. //go:build !linux && !darwin
  2. // +build !linux,!darwin
  3. package command
  4. import (
  5. "fmt"
  6. "runtime"
  7. )
  8. func runMount(cmd *Command, args []string) bool {
  9. fmt.Printf("Mount is not supported on %s %s\n", runtime.GOOS, runtime.GOARCH)
  10. return true
  11. }