chore: always show collection name
This commit is contained in:
parent
359b77b5aa
commit
7eb5a0dfe1
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue