summaryrefslogtreecommitdiff
path: root/makima/src/bin/makima.rs
diff options
context:
space:
mode:
Diffstat (limited to 'makima/src/bin/makima.rs')
-rw-r--r--makima/src/bin/makima.rs11
1 files changed, 9 insertions, 2 deletions
diff --git a/makima/src/bin/makima.rs b/makima/src/bin/makima.rs
index 71272f1..f9c981f 100644
--- a/makima/src/bin/makima.rs
+++ b/makima/src/bin/makima.rs
@@ -962,8 +962,15 @@ async fn run_chain(
if let Some(desc) = &chain.description {
println!("Description: {}", desc);
}
- if let Some(repo) = &chain.repository_url {
- println!("Repository: {}", repo);
+ if !chain.repositories.is_empty() {
+ println!("Repositories:");
+ for repo in &chain.repositories {
+ if let Some(url) = &repo.repository_url {
+ println!(" - {} ({})", repo.name, url);
+ } else if let Some(path) = &repo.local_path {
+ println!(" - {} (local: {})", repo.name, path);
+ }
+ }
}
println!();