We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 544cdaf + dcdb8ea commit bfa3253Copy full SHA for bfa3253
gix/src/filter.rs
@@ -172,7 +172,9 @@ impl Pipeline<'_> {
172
entry.matching_attributes(attrs);
173
},
174
&mut |buf| -> Result<_, gix_object::find::Error> {
175
- let entry = match index.entry_by_path(gix_path::into_bstr(rela_path).as_ref()) {
+ let entry = match index
176
+ .entry_by_path(gix_path::to_unix_separators_on_windows(gix_path::into_bstr(rela_path)).as_ref())
177
+ {
178
None => return Ok(None),
179
Some(entry) => entry,
180
};
0 commit comments