Skip to content

Commit

Permalink
fix: Now proper spaces are a added to the commands.
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Willems <jw@elevenbits.com>
  • Loading branch information
jw committed Mar 1, 2024
1 parent 8143c79 commit 6fc915e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl Default for BrtProcess {
fn create_command(cmdline: &[String]) -> String {
let mut command = "".to_string();
for part in cmdline.iter() {
command += part;
command += format!("{} ", part).as_str();
}
command
}
Expand Down

0 comments on commit 6fc915e

Please sign in to comment.