Skip to content

Commit

Permalink
fix Rust
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Oct 20, 2023
1 parent 8381be7 commit 1db2dc8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion worker/build.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use std::env;
use std::path::Path;
use std::process::Command;

fn main() {
Expand Down Expand Up @@ -95,7 +96,9 @@ fn main() {
let dir = Path::new(&worker_abs_path).join("out/msys");

if !Command::new(python)
.arg("scripts\\getmake.py --dir {}", dir.display())
.arg("scripts\\getmake.py")
.arg("--dir")
.arg(dir)
.status()
.expect("Failed to start")
.success()
Expand Down

0 comments on commit 1db2dc8

Please sign in to comment.