daemon: fix build

This commit is contained in:
Alex Zenla
2024-03-30 07:33:47 +00:00
parent 6ff5a1e62f
commit 2d5d819290

View File

@ -3,6 +3,6 @@ use std::io::Result;
fn main() -> Result<()> {
prost_build::Config::new()
.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(())
}