From 79302efb271b80bda2cdf19a6b3600dc7c7913c8 Mon Sep 17 00:00:00 2001 From: Baptiste Careil Date: Thu, 14 Nov 2024 19:21:49 +0100 Subject: [PATCH] Fix spurious rebuild of reaction due to invalid file path --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 3c9ebe9..f7de30e 100644 --- a/build.rs +++ b/build.rs @@ -50,7 +50,7 @@ See usage examples, service configurations and good practices on the wiki: https } println!("cargo::rerun-if-changed=build.rs"); - println!("cargo::rerun-if-changed=src/utils/cli.rs"); + println!("cargo::rerun-if-changed=src/cli.rs"); println!("cargo::rerun-if-changed=helpers_c/ip46tables.c"); println!("cargo::rerun-if-changed=helpers_c/nft46.c");