Skip to content

Commit

Permalink
chore: disable windows.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xzio committed Jun 23, 2024
1 parent 323c788 commit 83be65c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/tauri-plugin-jarvis/src/commands/system.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
use applications::AppInfo;

#[cfg(target_os = "macos")]
use crate::syscmds::{CommonSystemCmds, SystemCmds};

#[cfg(target_os = "linux")]
use crate::syscmds::{CommonSystemCmds, SystemCmds};

use super::utils::run_apple_script;
Expand Down
5 changes: 3 additions & 2 deletions packages/tauri-plugin-jarvis/src/syscmds/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ mod mac;
pub use mac::SystemCmds;
#[cfg(target_os = "windows")]
mod windows;
#[cfg(target_os = "windows")]
pub use windows::SystemCmds;

// #[cfg(target_os = "windows")]
// pub use windows::SystemCmds;

use anyhow::Result;

Expand Down

0 comments on commit 83be65c

Please sign in to comment.