fix: service install path

This commit is contained in:
MystiPanda 2024-04-30 20:20:39 +08:00
parent a25b072bf6
commit 5ff776f90d

View File

@ -102,7 +102,7 @@ pub async fn install_service() -> Result<()> {
if !installer_path.exists() {
bail!("installer not found");
}
let shell = installer_path.to_string_lossy();
let shell = installer_path.to_string_lossy().replace(" ", "\\\\ ");
let command = format!(r#"do shell script "{shell}" with administrator privileges"#);
let status = StdCommand::new("osascript")