chore: change to space separated list

This commit is contained in:
iff 2024-12-09 01:30:17 +01:00
parent 039e609aaa
commit 5b521dff09
6 changed files with 6 additions and 5 deletions

View file

@ -243,7 +243,7 @@ pub fn module_output(data: &Data, module: &str) -> Option<Vec<String>> {
let executable = &data.split[0];
let last_command = &data.command;
let error_msg = &data.error;
let executables = data.executables.clone().join(",");
let executables = data.executables.clone().join(" ");
let output = std::process::Command::new(shell)
.arg("-c")
.arg(module)