Skip to content

Commit

Permalink
Fixes "cargo::" in build.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso committed Aug 24, 2023
1 parent b20e45f commit 6e3dfc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage-proto/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 6e3dfc8

Please sign in to comment.