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

7 lines
209 B
Rust

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(())
}