clippy fix

This commit is contained in:
nora 2024-01-21 18:14:20 +01:00
parent 2da77e8af5
commit d0b410a6b3
4 changed files with 14 additions and 14 deletions

View file

@ -19,7 +19,7 @@ pub fn run_process(cmd: &mut Command) -> Result<String> {
);
}
Ok(String::from_utf8(output.stdout).wrap_err("stdout is not UTF-8")?)
String::from_utf8(output.stdout).wrap_err("stdout is not UTF-8")
}
run_process_inner(cmd).wrap_err(format!(
"{} {}",