diff --git a/src/build_helper/lib.rs b/src/build_helper/lib.rs index c30307f3a1b2..1e395b5ddea6 100644 --- a/src/build_helper/lib.rs +++ b/src/build_helper/lib.rs @@ -45,7 +45,8 @@ pub fn restore_library_path() { } } -pub fn run(cmd: &mut Command) { +/// Run the command, printing what we are running. +pub fn run_verbose(cmd: &mut Command) { println!("running: {:?}", cmd); run_silent(cmd); }