Skip to content
Snippets Groups Projects
Unverified Commit 76081f8d authored by GyDi's avatar GyDi
Browse files

fix: macos auto launch fail

parent 5ef42855
No related branches found
No related tags found
No related merge requests found
......@@ -157,7 +157,10 @@ impl Verge {
match result {
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")]
let ext = "";
#[cfg(target_os = "macos")]
let ext = ".app";
let ext = "";
#[cfg(target_os = "windows")]
let ext = ".exe";
String::from(app_name) + ext
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment