From 7eb5a0dfe1bb02b7394da76f929a985a6fafbf28 Mon Sep 17 00:00:00 2001 From: alemi Date: Thu, 15 Jun 2023 17:14:24 +0200 Subject: [PATCH] chore: always show collection name --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7268c59..10f582f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -79,8 +79,9 @@ async fn main() -> Result<(), Box> { let collection = PostWomanCollection::from_path(&args.collection)?; + println!("╶┐ * {}", collection.name()); + if args.verbose { - println!("╶┐ * {}", collection.name()); if let Some(descr) = &collection.description() { println!(" │ {}", descr); }