most likely fix
This commit is contained in:
parent
cd008a024a
commit
9422bb5297
|
@ -301,10 +301,10 @@ fn get(config_path: String) -> Result<(), &'static str> {
|
||||||
}
|
}
|
||||||
|
|
||||||
if cfg!(target_os = "windows") {
|
if cfg!(target_os = "windows") {
|
||||||
Command::new("cmd").arg("/C").arg(format!("copy {}/{} {}", &config.pfp_module.pfp_folder, pfpnames, &config.pfp_module.pfp_output_path)).output().expect("PFP module error");
|
Command::new("cmd").args(["/C", format!("copy {}/{} {}", &config.pfp_module.pfp_folder, pfpnames, &config.pfp_module.pfp_output_path).as_str()]).output().expect("PFP module error");
|
||||||
|
|
||||||
if config.disc_module.enabled {
|
if config.disc_module.enabled {
|
||||||
let mut c = Command::new("cmd").arg("/C").arg(format!("{} {}", &config.disc_module.python_path, &config.disc_module.script_path)).spawn().expect("Discord module error");
|
let mut c = Command::new("cmd").args(["/C", format!("{} {}", &config.disc_module.python_path, &config.disc_module.script_path).as_str()]).spawn().expect("Discord module error");
|
||||||
let _ = c.wait().expect("Error");
|
let _ = c.wait().expect("Error");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue