un-comment sort

This commit is contained in:
askiiart 2025-01-11 13:43:43 -06:00
parent 1f1070b90c
commit cd41376c22
Signed by untrusted user who does not match committer: askiiart
GPG key ID: 6A32977DAF31746A

View file

@ -184,7 +184,7 @@ pub fn run(command: &mut Command) -> CmdOutput {
let mut lines = stdout_rx.into_iter().collect::<Vec<Line>>();
lines.append(&mut stderr_rx.into_iter().collect::<Vec<Line>>());
//lines.sort();
lines.sort();
return CmdOutput {
lines: Some(lines),