chore: Add one more criteria for rerun build.rs to check .git/refs/heads

This commit is contained in:
Gerald Pinder 2024-09-23 12:43:03 -04:00
parent 65e1ccffaf
commit 90079a974a

View file

@ -2,5 +2,6 @@ use shadow_rs::SdResult;
fn main() -> SdResult<()> {
println!("cargo:rerun-if-changed=.git/HEAD");
println!("cargo:rerun-if-changed=.git/refs/heads");
shadow_rs::new()
}