build_helper: rename run -> run_verbose (seems unused)

This commit is contained in:
Ralf Jung 2019-08-01 20:08:49 +02:00
parent f23a5f208d
commit 79a1e7aaa6
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}