From 85950e212b355d54c131900aec6655e680aed6e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Garde?= Date: Wed, 16 Jun 2021 22:46:00 +0200 Subject: [PATCH] Fix revparsing with windows paths in blame example `revparse_single` uses a git object name and not a file path - that means backslashes must be translated to slashes on windows. Otherwise the example fails: ``` E:\dev\git2-rs>.\target\debug\blame.exe examples\blame.rs error: the path 'examples\blame.rs' does not exist in the given tree; class=Tree (14); code=NotFound (-3) ``` I reused the `cfg!` conditional from `remote.rs`, but there might be a better way to do that. --- examples/blame.rs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/examples/blame.rs b/examples/blame.rs index 7cb1b69470..4b442f7283 100644 --- a/examples/blame.rs +++ b/examples/blame.rs @@ -73,7 +73,15 @@ fn run(args: &Args) -> Result<(), git2::Error> { } } - let spec = format!("{}:{}", commit_id, path.display()); + let spec = if cfg!(unix) { + format!("{}:{}", commit_id, path.display()) + } else { + format!( + "{}:{}", + commit_id, + path.display().to_string().replace("\\", "/") + ) + }; let blame = repo.blame_file(path, Some(&mut opts))?; let object = repo.revparse_single(&spec[..])?; let blob = repo.find_blob(object.id())?;