Skip to content

Commit

Permalink
add native to feature match in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
jkelleyrtp committed Jan 31, 2025
1 parent c782626 commit 13ff1aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ impl Platform {
pub(crate) fn autodetect_from_cargo_feature(feature: &str) -> Option<Self> {
match feature {
"web" => Some(Platform::Web),
"desktop" => {
"desktop" | "native" => {
#[cfg(target_os = "macos")]
{
Some(Platform::MacOS)
Expand Down

0 comments on commit 13ff1aa

Please sign in to comment.