mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 10:05:17 +00:00
2e1d076460
* update modules
14 lines
335 B
Rust
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);
|
|
}
|