fix: macos auto launch fail
This commit is contained in:
parent
5ef4285558
commit
76081f8d89
@ -157,7 +157,10 @@ impl Verge {
|
|||||||
|
|
||||||
match result {
|
match result {
|
||||||
Ok(_) => Ok(()),
|
Ok(_) => Ok(()),
|
||||||
Err(_) => Err("failed to set system startup info".into()),
|
Err(err) => {
|
||||||
|
log::error!("{err}");
|
||||||
|
Err("failed to set system startup info".into())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -227,7 +230,7 @@ fn get_app_path(app_name: &str) -> String {
|
|||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
let ext = "";
|
let ext = "";
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
let ext = ".app";
|
let ext = "";
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
let ext = ".exe";
|
let ext = ".exe";
|
||||||
String::from(app_name) + ext
|
String::from(app_name) + ext
|
||||||
|
Loading…
Reference in New Issue
Block a user