forked from lavender-legacy/lavender.software
9 lines
214 B
Rust
9 lines
214 B
Rust
|
use crate::*;
|
||
|
|
||
|
pub fn copy_assets(ctx: &BuildContext) -> Result<()> {
|
||
|
log_info("Copying assets…");
|
||
|
copy_dir_recursive(ctx.source_dir.join("assets"), ctx.output_dir.join("assets"))?;
|
||
|
|
||
|
Ok(())
|
||
|
}
|