diff --git a/crs_template.txt b/resources/crs_template.txt similarity index 100% rename from crs_template.txt rename to resources/crs_template.txt diff --git a/src/cmd_new.rs b/src/cmd_new.rs index 38c5ae6..c55dc4e 100644 --- a/src/cmd_new.rs +++ b/src/cmd_new.rs @@ -5,7 +5,7 @@ use clap::{ Arg, ArgMatches, SubCommand, App }; use crate::{ success, warning }; use crate::cmd::{ Command, CommandError }; -const CRS_TEMPLATE: &[u8] = include_bytes!("../crs_template.txt"); +const CRS_TEMPLATE: &[u8] = include_bytes!("../resources/crs_template.txt"); pub struct CommandNew;