proto: actually set rerun-if-changed

This commit is contained in:
Artemis Tosini 2024-09-10 02:02:25 +00:00
parent fa7556a813
commit bd945a48a6
Signed by: artemist
GPG key ID: ADFFE553DCBB831E

View file

@ -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);
}