daemon: fix build

This commit is contained in:
Alex Zenla 2024-03-30 07:33:47 +00:00
parent 6ff5a1e62f
commit 2d5d819290
No known key found for this signature in database
GPG Key ID: 067B238899B51269

View File

@ -3,6 +3,6 @@ use std::io::Result;
fn main() -> Result<()> { fn main() -> Result<()> {
prost_build::Config::new() prost_build::Config::new()
.extern_path(".krata.v1.common", "::krata::v1::common") .extern_path(".krata.v1.common", "::krata::v1::common")
.compile_protos(&["proto/kratad/db.proto"], &["proto/", "../../proto"])?; .compile_protos(&["proto/kratad/db.proto"], &["proto/", "../krata/proto"])?;
Ok(()) Ok(())
} }