1
mirror of https://github.com/rclone/rclone synced 2024-09-22 20:52:03 +02:00
rclone/vendor/bazil.org/fuse/unmount.go
Nick Craig-Wood f7af730b50 Use a vendor directory for repeatable builds - fixes #816
This is using godep to manage the vendor directory.
2016-11-05 18:18:08 +00:00

7 lines
129 B
Go

package fuse
// Unmount tries to unmount the filesystem mounted at dir.
func Unmount(dir string) error {
return unmount(dir)
}