Skip to content

Commit

Permalink
Fix create-exe in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary authored Feb 5, 2021
1 parent 0cf1840 commit 77f2e85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/cli/src/commands/create_exe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ fn get_libwasmer_path() -> anyhow::Result<PathBuf> {
#[cfg(not(windows))]
path.push("libwasmer.a");
#[cfg(windows)]
path.push("wasmer_c_api.lib");
path.push("wasmer.lib");

Ok(path)
}
Expand Down

0 comments on commit 77f2e85

Please sign in to comment.