0g-storage-node/node/build.rs
0g-peterzhb 2e1d076460
@peter/update submodule (#25)
* update modules
2024-03-12 18:49:51 +08:00

14 lines
335 B
Rust

use std::process::Command;
fn main() {
println!("cargo:rerun-if-changed=../0g-storage-client");
let status = Command::new("go")
.current_dir("../0g-storage-client")
.args(vec!["build", "-o", "../target"])
.status()
.unwrap();
println!("build 0g-storage-client with status {}", status);
}