From cf4796909e088d823b836076c8e7053ce578a1d2 Mon Sep 17 00:00:00 2001 From: Sofia Date: Sat, 8 Aug 2026 00:33:57 +0300 Subject: [PATCH] Possibly fix it again --- rust/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/build.rs b/rust/build.rs index 83459aa..15e4a74 100644 --- a/rust/build.rs +++ b/rust/build.rs @@ -12,7 +12,7 @@ fn main() { if let Some(branch_path) = contents.split(" ").skip(1).next() { let path = PathBuf::from(".git").join(branch_path); let path = path.to_str().unwrap_or(".git/HEAD"); - println!("cargo:rustc-rerun-if-changed={}", path); + println!("cargo:rerun-if-changed={}", path); } } Err(err) => {