aboutsummaryrefslogtreecommitdiff
path: root/weed/command/mount_std.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2025-06-12 08:19:47 -0700
committerchrislu <chris.lu@gmail.com>2025-06-12 08:19:47 -0700
commitc79e73aa2a9ce9bb072a7b67747ff96d9effa075 (patch)
tree3ebafb8e141d59b69894068d012cde9506b81028 /weed/command/mount_std.go
parente71d681feee81dbe01c59dbc657f8ce85be3f415 (diff)
downloadseaweedfs-c79e73aa2a9ce9bb072a7b67747ff96d9effa075.tar.xz
seaweedfs-c79e73aa2a9ce9bb072a7b67747ff96d9effa075.zip
mount: complete fix for freebsd
fix https://github.com/seaweedfs/seaweedfs/issues/6645
Diffstat (limited to 'weed/command/mount_std.go')
-rw-r--r--weed/command/mount_std.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/weed/command/mount_std.go b/weed/command/mount_std.go
index 84c84b767..677dca793 100644
--- a/weed/command/mount_std.go
+++ b/weed/command/mount_std.go
@@ -1,12 +1,11 @@
-//go:build linux || darwin
-// +build linux darwin
+//go:build linux || darwin || freebsd
+// +build linux darwin freebsd
package command
import (
"context"
"fmt"
- "github.com/seaweedfs/seaweedfs/weed/util/version"
"net"
"net/http"
"os"
@@ -17,6 +16,8 @@ import (
"syscall"
"time"
+ "github.com/seaweedfs/seaweedfs/weed/util/version"
+
"github.com/hanwen/go-fuse/v2/fuse"
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/mount"