From 32c00cb1303a19c306621f2fa52f3f82848464db Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Wed, 25 Mar 2015 10:16:42 +1100 Subject: [PATCH] Oops, totally screwed that up. --- fuseutil/unmount.go => unmount.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename fuseutil/unmount.go => unmount.go (95%) diff --git a/fuseutil/unmount.go b/unmount.go similarity index 95% rename from fuseutil/unmount.go rename to unmount.go index b93c614..2c50925 100644 --- a/fuseutil/unmount.go +++ b/unmount.go @@ -18,6 +18,6 @@ import "github.com/jacobsa/bazilfuse" // Attempt to unmount the file system whose mount point is the supplied // directory. -func Unmount(dir string) { +func Unmount(dir string) error { return bazilfuse.Unmount(dir) }