mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2024-11-16 11:42:21 +08:00
chore: update
This commit is contained in:
parent
3f3fad0db7
commit
045ddc5ca5
|
@ -72,7 +72,6 @@ impl CoreManager {
|
|||
log::debug!("core is not running");
|
||||
return Ok(());
|
||||
}
|
||||
println!("stop core");
|
||||
|
||||
// 关闭tun模式
|
||||
let mut disable = Mapping::new();
|
||||
|
@ -93,7 +92,6 @@ impl CoreManager {
|
|||
|
||||
/// 启动核心
|
||||
pub async fn start_core(&self) -> Result<()> {
|
||||
println!("start core");
|
||||
let mut running = self.running.lock().await;
|
||||
if *running {
|
||||
log::debug!("core is running");
|
||||
|
|
|
@ -150,7 +150,7 @@ pub async fn reinstall_service() -> Result<()> {
|
|||
let install_shell: String = installer_path.to_string_lossy().replace(" ", "\\\\ ");
|
||||
let uninstall_shell: String = uninstall_path.to_string_lossy().replace(" ", "\\\\ ");
|
||||
let command = format!(
|
||||
r#"do shell script "{uninstall_shell} && {install_shell}" with administrator privileges"#
|
||||
r#"do shell script "sudo {uninstall_shell} && sudo {install_shell}" with administrator privileges"#
|
||||
);
|
||||
|
||||
let status = StdCommand::new("osascript")
|
||||
|
|
Loading…
Reference in New Issue
Block a user