You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
268 B

3 years ago
  1. //go:build !linux && !darwin && !freebsd
  2. // +build !linux,!darwin,!freebsd
  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. }