1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-12-24 13:21:23 +00:00
ibis/build.rs

8 lines
209 B
Rust
Raw Normal View History

2024-12-11 12:16:15 +00:00
use std::{fs::create_dir_all, io::Result};
/// Create site folder so include_dir macro for assets doesn't throw error in clean repo
fn main() -> Result<()> {
create_dir_all("target/site/")?;
Ok(())
}