From 8aa55b09d52ce304ae0129f381e5ff15f9a3ff32 Mon Sep 17 00:00:00 2001 From: anonymousGiga Date: Fri, 14 Oct 2022 09:42:51 +0800 Subject: [PATCH] Fix error during build: failed to run custom build command for sc-network-bitswap --- client/network/bitswap/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/network/bitswap/build.rs b/client/network/bitswap/build.rs index bd6222d546851..671277230a774 100644 --- a/client/network/bitswap/build.rs +++ b/client/network/bitswap/build.rs @@ -1,4 +1,4 @@ -const PROTOS: &[&str] = &["bitswap.v1.2.0.proto"]; +const PROTOS: &[&str] = &["src/schema/bitswap.v1.2.0.proto"]; fn main() { prost_build::compile_protos(PROTOS, &["src/schema"]).unwrap();