mirror of
https://github.com/Nutomic/ibis.git
synced 2024-12-23 17:51:24 +00:00
7 lines
209 B
Rust
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(())
|
|
}
|