Skip to content

Commit ce43629

Browse files
committed
chore: fix fmt
1 parent 3b07b23 commit ce43629

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

sold/build.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@ use std::process::Command;
1616
fn main() {
1717
println!("cargo:rerun-if-changed=../compiler/");
1818
if cfg!(target_os = "windows") {
19-
let install_deps = Command::new("cmake").arg("-P").arg("../compiler/scripts/install_deps.cmake").output();
19+
let install_deps = Command::new("cmake")
20+
.arg("-P")
21+
.arg("../compiler/scripts/install_deps.cmake")
22+
.output();
2023
assert!(install_deps.is_ok());
2124
}
2225

0 commit comments

Comments
 (0)