Skip to content

Commit

Permalink
fix: Fix generated module name when reading from a protodep toml file
Browse files Browse the repository at this point in the history
  • Loading branch information
saraiva132 committed Apr 25, 2022
1 parent ee9edb5 commit 2b13d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model/protodep.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ impl ProtodepDescriptor {
.collect::<Result<Vec<_>, _>>()?;

Ok(Descriptor {
name: "change name".to_string(),
name: "generated".to_string(),
description: Some("Generated from protodep file".to_string()),
proto_out_dir: self.proto_out_dir.into(),
dependencies,
Expand Down

0 comments on commit 2b13d6b

Please sign in to comment.