mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-05-09 18:16:43 -07:00
add message at the start of builds
This commit is contained in:
parent
27bd18beea
commit
d07eab6f37
1 changed files with 4 additions and 1 deletions
|
@ -26,7 +26,10 @@ async fn main() -> eyre::Result<()> {
|
|||
}
|
||||
|
||||
match mode {
|
||||
Mode::Build => site.build_once()?,
|
||||
Mode::Build => {
|
||||
println!("Building site...");
|
||||
site.build_once()?
|
||||
}
|
||||
Mode::Serve => site.serve().await?,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue