-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
@@ -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()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well credit on this one goes to @t-nelson: t-nelson@4e17f71
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all credits king clippy!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh i guess this'll fix broken docs build in solana-core
🚀
@@ -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()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all credits king clippy!
Codecov Report
@@ Coverage Diff @@
## master #32980 +/- ##
=========================================
- Coverage 82.0% 82.0% -0.1%
=========================================
Files 784 784
Lines 212650 212641 -9
=========================================
- Hits 174424 174390 -34
- Misses 38226 38251 +25 |
In preparation for #32961.