We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b59dbc commit f4b87d4Copy full SHA for f4b87d4
1 file changed
protos/build.rs
@@ -16,7 +16,7 @@ fn generate_protos() {
16
.bytes(&["."])
17
.compile_protos(&["src/proto/ldk_node_server.proto"], &["src/"])
18
.expect("protobuf compilation failed");
19
- println!("sss {}", &env::var("OUT_DIR").unwrap());
+ println!("OUT_DIR: {}", &env::var("OUT_DIR").unwrap());
20
let from_path = Path::new(&env::var("OUT_DIR").unwrap()).join("ldk_node_server.rs");
21
fs::copy(from_path, "src/lib.rs").unwrap();
22
}
0 commit comments