mount_notsupported.go 247 B

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