mirror of
https://github.com/encounter/objdiff.git
synced 2025-06-07 15:13:47 +00:00
Always pass forward slashes to make on Windows
This commit is contained in:
parent
d5e157545d
commit
4bab96e20b
@ -55,7 +55,7 @@ fn run_make(cwd: &Path, arg: &Path, config: &AppConfig) -> BuildStatus {
|
|||||||
.arg(make)
|
.arg(make)
|
||||||
.arg(arg.to_slash_lossy().as_ref());
|
.arg(arg.to_slash_lossy().as_ref());
|
||||||
} else {
|
} else {
|
||||||
command.current_dir(cwd).arg(arg);
|
command.current_dir(cwd).arg(arg.to_slash_lossy().as_ref());
|
||||||
}
|
}
|
||||||
command.creation_flags(winapi::um::winbase::CREATE_NO_WINDOW);
|
command.creation_flags(winapi::um::winbase::CREATE_NO_WINDOW);
|
||||||
command
|
command
|
||||||
|
Loading…
x
Reference in New Issue
Block a user