Merge pull request #12 from roblabla/patch-1
Fix build when path contains backslashes
This commit is contained in:
commit
e32e97c925
2
build.rs
2
build.rs
|
@ -73,6 +73,6 @@ fn main() {
|
||||||
target_path.push("mod.rs");
|
target_path.push("mod.rs");
|
||||||
|
|
||||||
f.write_all(br#"#[path=""#).unwrap();
|
f.write_all(br#"#[path=""#).unwrap();
|
||||||
f.write_all(target_path.into_os_string().into_string().unwrap().as_bytes()).unwrap();
|
f.write_all(target_path.into_os_string().into_string().unwrap().replace("\\", "\\\\").as_bytes()).unwrap();
|
||||||
f.write_all(br#""] mod io;"#).unwrap();
|
f.write_all(br#""] mod io;"#).unwrap();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue