diff --git a/build.rs b/build.rs index 25d23fb..551b312 100644 --- a/build.rs +++ b/build.rs @@ -1,8 +1,12 @@ fn main() -> std::io::Result<()> { #[cfg(feature = "gen")] - { generate_protobufs() } + { + generate_protobufs(); + } #[cfg(not(feature = "gen"))] - { Ok(()) } + { + Ok(()) + } } #[cfg(feature = "gen")]