We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6e1115 commit 3eba7acCopy full SHA for 3eba7ac
crates/neon-runtime/build.rs
@@ -1,6 +1,6 @@
1
extern crate gcc;
2
3
-use std::process::{Command, Stdio};
+use std::process::Command;
4
use std::env;
5
6
fn main() {
@@ -61,9 +61,8 @@ fn build_object_file() {
61
println!("cargo:node_lib_file={}", &node_gyp_output[node_lib_file_start_index..node_lib_file_end_index]);
62
}
63
64
- // Run `node-gyp build` (appending -d in debug mode).
+ // Run `node-gyp build`.
65
npm()
66
- .stderr(Stdio::null()) // Prevents cargo build from hanging on Windows.
67
.args(&["run", if debug() { "build-debug" } else { "build-release" }])
68
.status()
69
.ok()
0 commit comments