Remove non-WASI code
This commit is contained in:
parent
805c86b781
commit
38d7321511
23 changed files with 211 additions and 712 deletions
|
@ -1,23 +0,0 @@
|
|||
use std::process::Command;
|
||||
|
||||
fn main() {
|
||||
let cwd = std::env::current_dir().unwrap();
|
||||
let plugin_workspace = cwd.join("plugin").join("Cargo.toml");
|
||||
Command::new("cargo")
|
||||
.args(&["clean", "--manifest-path"])
|
||||
.arg(&plugin_workspace)
|
||||
.status()
|
||||
.unwrap();
|
||||
Command::new("cargo")
|
||||
.args(&[
|
||||
"build",
|
||||
"--release",
|
||||
"--target",
|
||||
"wasm32-unknown-unknown",
|
||||
"--manifest-path",
|
||||
])
|
||||
.arg(&plugin_workspace)
|
||||
.status()
|
||||
.unwrap();
|
||||
println!("cargo:warning=recompiling plugins")
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue