mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-23 01:44:54 +02:00
7 lines
163 B
Rust
7 lines
163 B
Rust
use std::process::Command;
|
|
|
|
#[allow(dead_code)]
|
|
fn main() {
|
|
println!("cargo:rerun-if-changed=ui/dev");
|
|
Command::new("./build-dist.sh").status().unwrap();
|
|
} |