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