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