fix: error message for libwhisper.lib

In windows, we are using `libwhisper.lib` instead of `libwhisper.a` so renamed it.
This commit is contained in:
yuni 2023-04-24 09:32:30 +09:00 committed by GitHub
parent c7062a2c5d
commit 91312ee92a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -116,7 +116,7 @@ fn main() {
"Release/whisper.lib",
format!("{}/whisper.lib", env::var("OUT_DIR").unwrap()),
)
.expect("Failed to copy libwhisper.a");
.expect("Failed to copy libwhisper.lib");
}
#[cfg(not(target_os = "windows"))]