From 4bab96e20b77b339d46b94ffcafb94d197b4c8e5 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sun, 11 Sep 2022 21:08:18 -0400 Subject: [PATCH] Always pass forward slashes to make on Windows --- src/jobs/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jobs/build.rs b/src/jobs/build.rs index d633d12..bf93c67 100644 --- a/src/jobs/build.rs +++ b/src/jobs/build.rs @@ -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