1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
use crate::config::CONFIG_FILENAME_JEN;
use anyhow::Result;
use std::{
    fs::{self},
    path::Path,
};

pub fn run(template_repo_dir: impl AsRef<Path>) -> Result<()> {
    let template_config_file_path = template_repo_dir.as_ref().join(CONFIG_FILENAME_JEN);
    fs::remove_file(template_config_file_path)?;

    Ok(())
}