From e58d336d980e3f6996ee72b7afdc37171ce3ceea Mon Sep 17 00:00:00 2001 From: Scott Gibb Date: Mon, 1 Dec 2025 20:21:06 +0000 Subject: [PATCH] fix: Fixed missing "" on init.rhai file There seems to be a missing set of "" that prevents cargo generate from working Signed-off-by: Scott Gibb --- template/init.rhai | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/init.rhai b/template/init.rhai index 6df4745..f9f66e0 100644 --- a/template/init.rhai +++ b/template/init.rhai @@ -5,8 +5,8 @@ if variable::get("is_init") { print(); print("*** Add the following statements to your build.rs:"); print(); - print(println!("cargo:rerun-if-changed={}", commitment_issues::find_valid_git_root!());); - print(#[cfg(not(target_os = "macos"))]); + print("println!(\"cargo:rerun-if-changed={}\", commitment_issues::find_valid_git_root!());"); + print("#[cfg(not(target_os = \"macos\"))]"); print("println!(\"cargo:rustc-link-arg=-Tmetadata.x\");"); print(); }