lighthouse/validator_client/slashing_protection/build.rs

8 lines
211 B
Rust
Raw Normal View History

fn main() {
let exit_status = std::process::Command::new("make")
.current_dir(std::env::var("CARGO_MANIFEST_DIR").unwrap())
.status()
.unwrap();
assert!(exit_status.success());
}