github.com/pachyderm/pachyderm@v1.13.4/src/server/pfs/cmds/mount_darwin.go (about) 1 // +build darwin 2 3 package cmds 4 5 import "fmt" 6 7 func printWarning() { 8 fmt.Println(`WARNING: Mount is supported on macOS versions 1.10.5 and earlier. Mount is implemented using FUSE which isn't supported in macOS 1.11. FUSE on macOS differs from Linux FUSE which causes some issues known issues. For the best experience we recommend using mount on Linux.`) 9 }