Skip to content

Commit f4b87d4

Browse files
committed
Fix typo in log in build.rs
1 parent 5b59dbc commit f4b87d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

protos/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ fn generate_protos() {
1616
.bytes(&["."])
1717
.compile_protos(&["src/proto/ldk_node_server.proto"], &["src/"])
1818
.expect("protobuf compilation failed");
19-
println!("sss {}", &env::var("OUT_DIR").unwrap());
19+
println!("OUT_DIR: {}", &env::var("OUT_DIR").unwrap());
2020
let from_path = Path::new(&env::var("OUT_DIR").unwrap()).join("ldk_node_server.rs");
2121
fs::copy(from_path, "src/lib.rs").unwrap();
2222
}

0 commit comments

Comments
 (0)