aboutsummaryrefslogtreecommitdiff
path: root/weed/command
diff options
context:
space:
mode:
Diffstat (limited to 'weed/command')
-rw-r--r--weed/command/mount.go2
-rw-r--r--weed/command/mount_std.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go
index 3442b8e97..c83315215 100644
--- a/weed/command/mount.go
+++ b/weed/command/mount.go
@@ -51,7 +51,7 @@ var cmdMount = &Command{
2) have a "weed filer" running
These 2 requirements can be achieved with one command "weed server -filer=true"
- This uses bazil.org/fuse, which enables writing FUSE file systems on
+ This uses github.com/seaweedfs/fuse, which enables writing FUSE file systems on
Linux, and OS X.
On OS X, it requires OSXFUSE (http://osxfuse.github.com/).
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go
index 9ab21010e..4e4ee6157 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -11,8 +11,8 @@ import (
"strings"
"time"
- "bazil.org/fuse"
- "bazil.org/fuse/fs"
+ "github.com/seaweedfs/fuse"
+ "github.com/seaweedfs/fuse/fs"
"github.com/chrislusf/seaweedfs/weed/filesys"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util"