forked from lavender-legacy/lavender.software
11 lines
233 B
Rust
11 lines
233 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(())
|
|
}
|