Skip to content

Commit

Permalink
Skip piping cargo stderr output, to keep travis build alive
Browse files Browse the repository at this point in the history
  • Loading branch information
HexyWitch committed Mar 3, 2018
1 parent c096512 commit 7df4424
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/wasm-build-support/src/cargo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ pub enum WasmArtifact {
pub fn build(options: &BuildOptions) -> Result<Vec<WasmArtifact>, Error> {
let mut cmd = Command::new("cargo");
cmd.stdout(Stdio::piped())
.stderr(Stdio::piped())
.arg("build")
.arg("--target=wasm32-unknown-unknown")
.arg("--release")
Expand Down

0 comments on commit 7df4424

Please sign in to comment.