Skip to content
Snippets Groups Projects
Commit 04b24cf7 authored by Michael Aaron Murphy's avatar Michael Aaron Murphy
Browse files

Fix Issue #434

parent e00c12e5
No related branches found
No related tags found
No related merge requests found
......@@ -425,7 +425,11 @@ fn get_full_command(command: &Command) -> String {
let mut output = String::from(&command[1..command.len()-1]);
for argument in arg_iter {
output.push(' ');
output.push_str(&argument[1..argument.len()-1]);
if argument.len() > 2 {
output.push_str(&argument[1..argument.len()-1]);
} else {
output.push_str(&argument);
}
}
output
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment