mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 17:15:38 +08:00
fix: add target os linux
This commit is contained in:
@@ -177,10 +177,10 @@ pub async fn restart_sidecar() -> CmdResult {
|
|||||||
|
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub fn grant_permission(core: String) -> CmdResult {
|
pub fn grant_permission(core: String) -> CmdResult {
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(any(target_os = "macos", target_os = "linux"))]
|
||||||
return wrap_err!(manager::grant_permission(core));
|
return wrap_err!(manager::grant_permission(core));
|
||||||
|
|
||||||
#[cfg(not(target_os = "macos"))]
|
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
|
||||||
return Err("Unsupported target".into());
|
return Err("Unsupported target".into());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user