From 38bdcbc45e8e63f3a6fca8856c7918042e068f64 Mon Sep 17 00:00:00 2001 From: doinkythederp Date: Sun, 28 Jul 2024 20:25:45 -0700 Subject: [PATCH] fix: remove empty scripts folder --- cargo-generate.toml | 8 ++++++-- scripts/ci.rhai => ci.rhai | 0 2 files changed, 6 insertions(+), 2 deletions(-) rename scripts/ci.rhai => ci.rhai (100%) diff --git a/cargo-generate.toml b/cargo-generate.toml index b544a60..ac2e238 100644 --- a/cargo-generate.toml +++ b/cargo-generate.toml @@ -1,6 +1,10 @@ [template] cargo_generate_version = ">=0.9.0" -ignore = ["target", ".DS_Store"] # ideally this would include all of .gitignore +ignore = [ + "scripts", + "target", + ".DS_Store", +] # ideally this would include all of .gitignore [conditional.'crate_type == "lib"'] ignore = ["src/main.rs"] @@ -47,4 +51,4 @@ choices = [ ] [hooks] -post = ["scripts/ci.rhai"] +post = ["ci.rhai"] diff --git a/scripts/ci.rhai b/ci.rhai similarity index 100% rename from scripts/ci.rhai rename to ci.rhai