Skip to content

Commit

Permalink
Merge pull request ggerganov#30 from a5huynh/master
Browse files Browse the repository at this point in the history
cmake build args fix
  • Loading branch information
tazz4843 authored Apr 16, 2023
2 parents dfe7450 + ccf2dcc commit 73a05c7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ fn main() {
let code = std::process::Command::new("cmake")
.arg("--build")
.arg(".")
.arg("--config Release")
.arg("--config")
.arg("Release")
.status()
.expect("Failed to build libwhisper.a");
if code.code() != Some(0) {
Expand Down

0 comments on commit 73a05c7

Please sign in to comment.