From f110bd98d107997d72152999b3295f435af9a3a7 Mon Sep 17 00:00:00 2001 From: Kevin Rizzo <32458485+KevinRizzoTO@users.noreply.github.com> Date: Tue, 31 Jan 2023 14:22:11 -0500 Subject: [PATCH] Making sure that new files in the winch filetests directory will cause a rebuild (#5672) --- winch/filetests/build.rs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 winch/filetests/build.rs diff --git a/winch/filetests/build.rs b/winch/filetests/build.rs new file mode 100644 index 0000000000..bd0f62b29d --- /dev/null +++ b/winch/filetests/build.rs @@ -0,0 +1,4 @@ +fn main() { + // Ensure that new files in the filetests directory cause a rebuild. + println!("cargo:rerun-if-changed=filetests"); +}