From 667bc163426aa075e127d7e58e06ffb11f9e20a2 Mon Sep 17 00:00:00 2001 From: Kirill Fomichev Date: Sat, 14 Oct 2023 02:06:30 +0400 Subject: [PATCH] storage-proto: change rerun line format (#33687) --- 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 25954b1b8b..947f562c1c 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); }