Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 6e3dfc8

Browse files
committed
Fixes "cargo::" in build.rs
1 parent b20e45f commit 6e3dfc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage-proto/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fn main() -> Result<(), std::io::Error> {
1010
let mut protos = Vec::new();
1111
for proto_file in &proto_files {
1212
let proto = proto_base_path.join(proto_file);
13-
println!("cargo::rerun-if-changed={}", proto.display());
13+
println!("cargo:rerun-if-changed={}", proto.display());
1414
protos.push(proto);
1515
}
1616

0 commit comments

Comments
 (0)