mirror of
https://github.com/gitui-org/gitui
synced 2026-05-24 09:28:21 +00:00
fix clippy
This commit is contained in:
parent
4fa90bfc40
commit
edce2dec12
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ pub fn index_reset_at(repo_path: &str, path: &Path) -> bool {
|
||||||
if let Ok(out) = output {
|
if let Ok(out) = output {
|
||||||
dbg!(String::from_utf8(out.stderr.clone()).unwrap());
|
dbg!(String::from_utf8(out.stderr.clone()).unwrap());
|
||||||
String::from_utf8(out.stderr).unwrap()
|
String::from_utf8(out.stderr).unwrap()
|
||||||
== "Updated 1 path from the index\n".to_string()
|
== "Updated 1 path from the index\n"
|
||||||
} else {
|
} else {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue