Skip to content

Commit

Permalink
Leave version unchanged. Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Spencer committed Sep 20, 2023
1 parent a7d3f5f commit 2c84cf8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "buffrs"
version = "0.5.1"
version = "0.5.0"
edition = "2021"
description = "Modern protobuf package management"
authors = ["Mara Schulke <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ impl Generator {

tracing::info!(":: running {protoc_cmd:?}");

let result = protoc_cmd.output()?; // TODO (alex.spencer) - this isn't raising an error/passing on exit code 1?
let result = protoc_cmd.output()?;
match result.status.code() {
Some(0) => tracing::info!("{language} code generated successfully"),
Some(_) => {
Expand Down

0 comments on commit 2c84cf8

Please sign in to comment.