From 69987e2633b02740bf809e27c3de48392729438b Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Mon, 3 Jul 2023 00:58:13 -0400 Subject: [PATCH] not silent binary --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index 4dffe25..0fe9d8c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,6 +60,7 @@ fn write_file(html: String) { copy_recursively("./static", "./output").expect("Could not copy static directory"); } fs::write("./output/index.html", html).expect("Could not write to index.html"); + println!("Yaml parsed, Template rendered, and all living in ./output/") } fn main() {