Skip to content

Commit

Permalink
fixing build
Browse files Browse the repository at this point in the history
Signed-off-by: Simon LUCIDO <[email protected]>
  • Loading branch information
lucido-simon committed Oct 24, 2023
1 parent 72cc3b8 commit 01ebb06
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,13 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
.compile(&["../shared/proto/lambdo.proto"], &["../shared/proto"])?;

let _ = Command::new(std::env::var("RUSTFMT").unwrap_or_else(|_| "rustfmt".to_owned()))
.arg("--edition")
.arg("2021")
.arg("--emit")
.arg("files")
.arg(format!(
"{}/{}",
"src/vm_manager_vmm", "grpc_definitions.rs"
"src/vm_manager/vmm", "grpc_definitions.rs"
))
.output();

Expand Down

0 comments on commit 01ebb06

Please sign in to comment.