This commit is contained in:
josh rotenberg 2021-07-04 12:00:13 -07:00
parent 8ec0bf6e30
commit 8024b08f93
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ pub fn execute(args: &ArgMatches) -> Result<()> {
if let Some(ignore) = args.value_of("ignore") {
match ignore {
"git" => builder.create_gitignore(true),
_ => builder.create_gitignore(false)
_ => builder.create_gitignore(false),
};
} else {
println!("\nDo you want a .gitignore to be created? (y/n)");