fix: check config

This commit is contained in:
GyDi 2022-11-21 23:11:56 +08:00
parent c9359978f9
commit 3cd2be5081
No known key found for this signature in database
GPG Key ID: 9C3AD40F1F99880A

View File

@ -59,8 +59,11 @@ impl CoreManager {
let clash_core = { Config::verge().latest().clash_core.clone() };
let clash_core = clash_core.unwrap_or("clash".into());
let app_dir = dirs::app_home_dir()?;
let app_dir = dirs::path_to_str(&app_dir)?;
let output = Command::new_sidecar(clash_core)?
.args(["-t", "-f", config_path])
.args(["-t", "-d", app_dir, "-f", config_path])
.output()?;
if !output.status.success() {