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

@ -8,7 +8,7 @@ fn main() -> Result<(), std::io::Error> {
let error_msg = std::env::var("_PR_ERROR_MSG").expect("_PR_ERROR_MSG not set");
let executables: Vec<String> = {
let executables = std::env::var("_PR_EXECUTABLES").expect("_PR_EXECUTABLES not set");
executables.split(",").map(|s| s.to_string()).collect()
executables.split(" ").map(|s| s.to_string()).collect()
};
#[cfg(debug_assertions)]