Skip to content

Commit

Permalink
Fix clippy lint
Browse files Browse the repository at this point in the history
  • Loading branch information
slowli committed Nov 28, 2023
1 parent 8d8635c commit 8465530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/libs/protobuf_build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ impl Config {
.context("prepare_output_dir()")?;
let output_path = output_dir.join("gen.rs");
let descriptor_path = output_dir.join("gen.binpb");
fs::write(&descriptor_path, &descriptor.encode_to_vec())?;
fs::write(&descriptor_path, descriptor.encode_to_vec())?;

if self.is_public {
let manifest = Manifest {
Expand Down

0 comments on commit 8465530

Please sign in to comment.