From 6e3dfc833f5b54ec399fcebbb93ceca87142abed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Mei=C3=9Fner?= Date: Thu, 24 Aug 2023 16:49:06 +0000 Subject: [PATCH] Fixes "cargo::" in build.rs --- storage-proto/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage-proto/build.rs b/storage-proto/build.rs index 25954b1b8b98b1..947f562c1c6f74 100644 --- a/storage-proto/build.rs +++ b/storage-proto/build.rs @@ -10,7 +10,7 @@ fn main() -> Result<(), std::io::Error> { let mut protos = Vec::new(); for proto_file in &proto_files { let proto = proto_base_path.join(proto_file); - println!("cargo::rerun-if-changed={}", proto.display()); + println!("cargo:rerun-if-changed={}", proto.display()); protos.push(proto); }