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
228 B

  1. // +build !linux
  2. // +build !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. }