Use "make package-capi" instead of "make package"

This commit is contained in:
Felix Schütt
2022-09-15 18:48:48 +02:00
parent 18006009aa
commit ec58b61b66
2 changed files with 4 additions and 4 deletions

View File

@@ -53,9 +53,9 @@ impl Config {
}
println!("running make package...");
// run make package
// run make package-capi
let mut cmd = std::process::Command::new("make");
cmd.arg("package");
cmd.arg("package-capi");
cmd.current_dir(wasmer_base_dir.clone() + "wasmer");
let result = cmd.output();
println!("make package: {result:#?}");