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.
1 parent d5e1575 commit 4bab96eCopy full SHA for 4bab96e
src/jobs/build.rs
@@ -55,7 +55,7 @@ fn run_make(cwd: &Path, arg: &Path, config: &AppConfig) -> BuildStatus {
55
.arg(make)
56
.arg(arg.to_slash_lossy().as_ref());
57
} else {
58
- command.current_dir(cwd).arg(arg);
+ command.current_dir(cwd).arg(arg.to_slash_lossy().as_ref());
59
}
60
command.creation_flags(winapi::um::winbase::CREATE_NO_WINDOW);
61
command
0 commit comments