diff options
| author | Ralf Jung <post@ralfj.de> | 2019-08-01 20:08:49 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2019-08-01 20:13:02 +0200 |
| commit | 79a1e7aaa68dea2ca80c3af38ad62bcf5f01b506 (patch) | |
| tree | 81ccb2bbae89eba2091d343794ec30234d8a3387 | |
| parent | f23a5f208de7fba983bfaaa8d60f1208d5780a98 (diff) | |
| download | rust-79a1e7aaa68dea2ca80c3af38ad62bcf5f01b506.tar.gz rust-79a1e7aaa68dea2ca80c3af38ad62bcf5f01b506.zip | |
build_helper: rename run -> run_verbose (seems unused)
| -rw-r--r-- | src/build_helper/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/build_helper/lib.rs b/src/build_helper/lib.rs index c30307f3a1b..1e395b5ddea 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); } |
