From 17db3436f447e83f8436919a56c9be6121e95ea8 Mon Sep 17 00:00:00 2001 From: Nathan Gill Date: Mon, 5 Jan 2026 08:35:51 +0000 Subject: [PATCH] hide build directory prefix in build messages --- src/build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build.rs b/src/build.rs index a9952a8..1f1b472 100644 --- a/src/build.rs +++ b/src/build.rs @@ -117,7 +117,7 @@ impl<'a> Builder<'a> { println!( "Copied static content directory to {}", - static_dst.display() + self.config.build.static_prefix ); } @@ -163,7 +163,7 @@ impl<'a> Builder<'a> { write(&dst_path, &page.content)?; } - println!("Generated {}", dst_path.display()); + println!("Generated {}", &page.rel_path.display()); } Ok(())