chore: always show collection name

This commit is contained in:
əlemi 2023-06-15 17:14:24 +02:00
parent 359b77b5aa
commit 7eb5a0dfe1
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -79,8 +79,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
let collection = PostWomanCollection::from_path(&args.collection)?;
println!("╶┐ * {}", collection.name());
if args.verbose {
println!("╶┐ * {}", collection.name());
if let Some(descr) = &collection.description() {
println!("{}", descr);
}