fix: enable `boo` on FreeBSD (#7716)

pull/7718/head
Jon Parise 2025-06-28 14:55:28 -04:00 committed by GitHub
commit 5e76606120
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ const Boo = struct {
pub fn run(gpa: Allocator) !u8 {
// Disable on non-desktop systems.
switch (builtin.os.tag) {
.windows, .macos, .linux => {},
.windows, .macos, .linux, .freebsd => {},
else => return 1,
}