Fix a typo when running commands

This commit is contained in:
Alex Crichton 2018-03-29 12:26:42 -07:00
parent afc43174d9
commit 646df20d70

View File

@ -232,7 +232,7 @@ impl Project {
Command::new("yarn")
};
cmd.arg("webpack").current_dir(&root);
run(&mut cmd, "node");
run(&mut cmd, "yarn");
let mut cmd = Command::new("node");
cmd.arg(root.join("bundle.js"))