diff --git a/packages/cli/src/platform.rs b/packages/cli/src/platform.rs index 4b27972ec1..29894459e1 100644 --- a/packages/cli/src/platform.rs +++ b/packages/cli/src/platform.rs @@ -173,6 +173,11 @@ impl Platform { { Some(Platform::Linux) } + // Possibly need a something for freebsd? Maybe default to Linux? + #[cfg(not(any(target_os = "linux", target_os = "windows", target_os = "macos")))] + { + None + } } "mobile" => None, "liveview" => Some(Platform::Liveview),