From 6542d1e0aac93ae1c38a21dbb2b3feb854d6e22b Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Tue, 27 Jan 2026 21:37:23 -0800 Subject: [PATCH] Enable weed fuse on FreeBSD (#8146) * Enable weed fuse on FreeBSD * Update weed/command/fuse_notsupported.go Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Update weed/command/fuse_std.go Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- weed/command/fuse_notsupported.go | 4 ++-- weed/command/fuse_std.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/weed/command/fuse_notsupported.go b/weed/command/fuse_notsupported.go index dc47bd566..ce5470791 100644 --- a/weed/command/fuse_notsupported.go +++ b/weed/command/fuse_notsupported.go @@ -1,5 +1,5 @@ -//go:build !linux && !darwin -// +build !linux,!darwin +//go:build !darwin && !freebsd && !linux +// +build !darwin,!freebsd,!linux package command diff --git a/weed/command/fuse_std.go b/weed/command/fuse_std.go index 5e812081d..5f76089c0 100644 --- a/weed/command/fuse_std.go +++ b/weed/command/fuse_std.go @@ -1,5 +1,5 @@ -//go:build linux || darwin -// +build linux darwin +//go:build darwin || freebsd || linux +// +build darwin freebsd linux package command