diff options
Diffstat (limited to 'src/makefile/functions.rs')
-rw-r--r-- | src/makefile/functions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/makefile/functions.rs b/src/makefile/functions.rs index 8df1892..43ed44b 100644 --- a/src/makefile/functions.rs +++ b/src/makefile/functions.rs @@ -303,7 +303,7 @@ mod shell { // TODO set .SHELLSTATUS Ok(String::from_utf8(result.stdout)? .replace("\r\n", "\n") - .trim_end_matches("\n") + .trim_end_matches('\n') .replace("\n", " ")) } } |