mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-24 06:33:33 +03:00
Try to fix tests on windows again
This commit is contained in:
parent
9369ae9522
commit
9eb63fd0df
@ -88,7 +88,14 @@ fn babel() -> PathBuf {
|
||||
|
||||
INIT.call_once(|| {
|
||||
if !me.exists() {
|
||||
run(Command::new("npm")
|
||||
let mut npm = if cfg!(windows) {
|
||||
let mut n = Command::new("cmd");
|
||||
n.arg("/c").arg("npm");
|
||||
n
|
||||
} else {
|
||||
Command::new("npm")
|
||||
};
|
||||
run(npm
|
||||
.arg("install")
|
||||
.arg("babel-cli")
|
||||
.arg("babel-preset-env")
|
||||
|
Loading…
Reference in New Issue
Block a user