aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_darwin.go
diff options
context:
space:
mode:
authorChris Lu <chrislusf@users.noreply.github.com>2019-11-27 19:22:51 -0800
committerGitHub <noreply@github.com>2019-11-27 19:22:51 -0800
commit0b822a6fb546e642daaf81947a2f943f396e255b (patch)
tree638fb8a6a90824a20f73f80c1b09419a334cb5f4 /weed/command/mount_darwin.go
parent0d8a88c9a80af1812b89f92ee9ed2705fa2df6a5 (diff)
parent13b6f09fea37fc9c61fd71232ed6568f2e10b759 (diff)
downloadseaweedfs-0b822a6fb546e642daaf81947a2f943f396e255b.tar.xz
seaweedfs-0b822a6fb546e642daaf81947a2f943f396e255b.zip
Merge pull request #1142 from iliul/wip-fuse-mount
fuse: check mount point available before do runmount
Diffstat (limited to 'weed/command/mount_darwin.go')
-rw-r--r--weed/command/mount_darwin.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/command/mount_darwin.go b/weed/command/mount_darwin.go
index 632691e47..f0a5581e7 100644
--- a/weed/command/mount_darwin.go
+++ b/weed/command/mount_darwin.go
@@ -7,3 +7,7 @@ import (
func osSpecificMountOptions() []fuse.MountOption {
return []fuse.MountOption{}
}
+
+func checkMountPointAvailable(dir string) bool {
+ return true
+}