remove debug statement

This commit is contained in:
Stephan Dilly 2020-03-27 23:16:17 +01:00
parent 16d0ae4b8f
commit 96b739c977

View file

@ -52,7 +52,7 @@ pub fn index_reset_at(repo_path: &str, path: &Path) -> bool {
};
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()
== "Updated 1 path from the index\n"
} else {