From bd945a48a6dc9c06a2f1e3a4f5363d49f2b9e287 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Tue, 10 Sep 2024 02:02:25 +0000 Subject: [PATCH] proto: actually set rerun-if-changed --- proto/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proto/build.rs b/proto/build.rs index 7e6498f..d2ec2c8 100644 --- a/proto/build.rs +++ b/proto/build.rs @@ -5,7 +5,7 @@ pub fn main() -> io::Result<()> { for file in fs::read_dir("proto/steam")? { let path = file?.path(); - eprintln!("Got path {:?}", path); + println!("cargo:rerun-if-changed={}", path.to_str().unwrap()); files.push(path); }