fix: add target os linux

This commit is contained in:
GyDi 2023-03-16 23:57:34 +08:00
parent 8174ab7616
commit 52658886e7
No known key found for this signature in database
GPG Key ID: 9C3AD40F1F99880A

View File

@ -177,10 +177,10 @@ pub async fn restart_sidecar() -> CmdResult {
#[tauri::command]
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));
#[cfg(not(target_os = "macos"))]
#[cfg(not(any(target_os = "macos", target_os = "linux")))]
return Err("Unsupported target".into());
}