From 79a1e7aaa68dea2ca80c3af38ad62bcf5f01b506 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Thu, 1 Aug 2019 20:08:49 +0200 Subject: [PATCH] build_helper: rename run -> run_verbose (seems unused) --- src/build_helper/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); }