djoc 0.1.0

The Djot document compiler
Documentation
1
2
3
4
5
6
7
8
9
10
use std::io;

use log::info;

pub fn clean() -> io::Result<()> {
    info!("Cleaning up the working directory...");
    let path = std::env::current_dir()?;
    std::fs::remove_dir_all(path.join("build"))?;
    Ok(())
}