-
Notifications
You must be signed in to change notification settings - Fork 117
Open
Labels
Description
Lines 409 to 419 in 2b0495a
| func mount( | |
| dir string, | |
| cfg *MountConfig, | |
| ready chan<- error) (dev *os.File, err error) { | |
| fusekernel.IsPlatformFuseT = false | |
| if fuset_bin, err := fusetBinary(); err == nil { | |
| return mountFuset(fuset_bin, dir, cfg, ready) | |
| } | |
| return mountOsxFuse(dir, cfg, ready) | |
| } |