chore: inherit stderr (#1689)

This commit is contained in:
Matthias Seitz 2022-09-11 23:42:57 +02:00 committed by GitHub
parent feaa473ffb
commit 162e0de27a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ impl Anvil {
} else {
Command::new("anvil")
};
cmd.stdout(std::process::Stdio::piped());
cmd.stdout(std::process::Stdio::piped()).stderr(std::process::Stdio::inherit());
let port = if let Some(port) = self.port { port } else { unused_port() };
cmd.arg("-p").arg(port.to_string());