Commit 38175a2e authored by Aaron Jacobs's avatar Aaron Jacobs

Fix minimalFS on OS X.

parent 3d617264
......@@ -10,6 +10,7 @@ import (
"golang.org/x/net/context"
"github.com/jacobsa/fuse"
"github.com/jacobsa/fuse/fuseops"
"github.com/jacobsa/fuse/fuseutil"
)
......@@ -23,6 +24,12 @@ type minimalFS struct {
fuseutil.NotImplementedFileSystem
}
func (fs *minimalFS) StatFS(
ctx context.Context,
op *fuseops.StatFSOp) (err error) {
return
}
////////////////////////////////////////////////////////////////////////
// Tests
////////////////////////////////////////////////////////////////////////
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment