This commit is contained in:
John Smith
2023-06-23 17:01:52 -04:00
parent b2bd4bcbbd
commit bc6421acf7
5 changed files with 77 additions and 11 deletions

View File

@@ -287,8 +287,10 @@ pub fn process_command_line() -> EyreResult<(Settings, ArgMatches)> {
let mut out: Vec<String> = Vec::new();
for x in x.split(',') {
let x = x.trim().to_string();
println!(" {}", x);
out.push(x);
if !x.is_empty() {
println!(" {}", x);
out.push(x);
}
}
out
}