Skip to content

Commit

Permalink
build: Fix a needless borrow
Browse files Browse the repository at this point in the history
  • Loading branch information
xry111 committed Nov 4, 2024
1 parent 399d3be commit 893e3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ fn main() {
let out_dir = env::var("OUT_DIR").unwrap();
let st = Command::new("make")
.args(["-C", "test-aux"])
.arg(&format!("OUT_DIR={}", out_dir))
.arg(format!("OUT_DIR={}", out_dir))
.status()
.unwrap();
if !st.success() {
Expand Down

0 comments on commit 893e3d6

Please sign in to comment.