Always pass forward slashes to make on Windows

This commit is contained in:
Luke Street 2022-09-11 21:08:18 -04:00
parent d5e157545d
commit 4bab96e20b
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ fn run_make(cwd: &Path, arg: &Path, config: &AppConfig) -> BuildStatus {
.arg(make)
.arg(arg.to_slash_lossy().as_ref());
} 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