File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,15 +76,15 @@ impl Pipeline {
76
76
where
77
77
R : std:: io:: Read ,
78
78
{
79
- let bstr_path = gix_path:: into_bstr ( rela_path) ;
79
+ let bstr_rela_path = gix_path:: to_unix_separators_on_windows ( gix_path :: into_bstr ( rela_path) ) ;
80
80
let Configuration {
81
81
driver,
82
82
digest,
83
83
_attr_digest : _,
84
84
encoding,
85
85
apply_ident_filter,
86
86
} = Configuration :: at_path (
87
- bstr_path . as_ref ( ) ,
87
+ bstr_rela_path . as_ref ( ) ,
88
88
& self . options . drivers ,
89
89
& mut self . attrs ,
90
90
attributes,
@@ -109,7 +109,7 @@ impl Pipeline {
109
109
driver,
110
110
& mut src,
111
111
driver:: Operation :: Clean ,
112
- self . context . with_path ( bstr_path . as_ref ( ) ) ,
112
+ self . context . with_path ( bstr_rela_path . as_ref ( ) ) ,
113
113
) ? {
114
114
if !apply_ident_filter && encoding. is_none ( ) && !would_convert_eol {
115
115
// Note that this is not typically a benefit in terms of saving memory as most filters
You can’t perform that action at this time.
0 commit comments