summaryrefslogtreecommitdiffstats
path: root/src/commands/build.rs
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2020-12-09 13:31:32 +0100
committerMatthias Beyer <mail@beyermatthias.de>2020-12-09 14:52:09 +0100
commit087cecf01ebdbe12902faa8edb8247c16342a996 (patch)
treef5127c29f204cf931a68dc66b8bf542cae664412 /src/commands/build.rs
parent4899ec32f152b8b598d67360e68e9054bfa1bdf6 (diff)
Add progress spinners for source verification routines.
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'src/commands/build.rs')
-rw-r--r--src/commands/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/build.rs b/src/commands/build.rs
index c0c2f59..7d7f96a 100644
--- a/src/commands/build.rs
+++ b/src/commands/build.rs
@@ -179,7 +179,7 @@ pub async fn build(matches: &ArgMatches,
if matches.is_present("no_verification") {
warn!("No hash verification will be performed");
} else {
- crate::commands::source::verify_impl(tree.all_packages().into_iter(), &source_cache)
+ crate::commands::source::verify_impl(tree.all_packages().into_iter(), &source_cache, &progressbars)
.await?;
}