Browse Source

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>
pull/3961/merge
Chris Lu 4 days ago
committed by GitHub
parent
commit
6542d1e0aa
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      weed/command/fuse_notsupported.go
  2. 4
      weed/command/fuse_std.go

4
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

4
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

Loading…
Cancel
Save