|
@ -116,7 +116,7 @@ pub fn compile_library(output: &str, config: &Config, files: &[&str]) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
fn run(cmd: &mut Command) { |
|
|
fn run(cmd: &mut Command) { |
|
|
println!("running: {}", cmd); |
|
|
println!("running: {:?}", cmd); |
|
|
let status = match cmd.stdout(InheritFd(1)).stderr(InheritFd(2)).status() { |
|
|
let status = match cmd.stdout(InheritFd(1)).stderr(InheritFd(2)).status() { |
|
|
Ok(status) => status, |
|
|
Ok(status) => status, |
|
|
Err(e) => panic!("failed to spawn process: {}", e), |
|
|
Err(e) => panic!("failed to spawn process: {}", e), |
|
|