From da8824a368e4b36ebabef8d8351160f48fc7f479 Mon Sep 17 00:00:00 2001 From: Nick Pegg Date: Sun, 27 Apr 2025 09:49:05 -0700 Subject: [PATCH] tell the user album was created --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index d73956b..2049382 100644 --- a/src/main.rs +++ b/src/main.rs @@ -8,7 +8,10 @@ fn main() -> anyhow::Result<()> { let album_path = Path::new(&cli.album_path); match cli.subcommand { - Commands::Init {} => make_skeleton(album_path)?, + Commands::Init {} => { + make_skeleton(album_path)?; + println!("Album created in {}", album_path.display()); + } Commands::Generate { quick } => { println!("Generate, quick: {quick}"); todo!()