mirror of
https://github.com/Noratrieb/website.git
synced 2026-01-14 17:05:02 +01:00
clippy fix
This commit is contained in:
parent
2da77e8af5
commit
d0b410a6b3
4 changed files with 14 additions and 14 deletions
|
|
@ -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!(
|
||||
"{} {}",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue