Skip to content

Commit 4bab96e

Browse files
committed
Always pass forward slashes to make on Windows
1 parent d5e1575 commit 4bab96e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jobs/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fn run_make(cwd: &Path, arg: &Path, config: &AppConfig) -> BuildStatus {
5555
.arg(make)
5656
.arg(arg.to_slash_lossy().as_ref());
5757
} else {
58-
command.current_dir(cwd).arg(arg);
58+
command.current_dir(cwd).arg(arg.to_slash_lossy().as_ref());
5959
}
6060
command.creation_flags(winapi::um::winbase::CREATE_NO_WINDOW);
6161
command

0 commit comments

Comments
 (0)