mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-04 23:33:44 +08:00
fix: service install failed on macos
This commit is contained in:
parent
c3730b7efd
commit
9b2dc10da2
@ -103,6 +103,12 @@ pub async fn install_service() -> Result<()> {
|
||||
if !installer_path.exists() {
|
||||
bail!("installer not found");
|
||||
}
|
||||
|
||||
let _ = StdCommand::new("chmod")
|
||||
.arg("+x")
|
||||
.arg(installer_path.to_string_lossy().replace(" ", "\\ "))
|
||||
.output();
|
||||
|
||||
let shell = installer_path.to_string_lossy().replace(" ", "\\\\ ");
|
||||
let command = format!(r#"do shell script "{shell}" with administrator privileges"#);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user