mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-21 00:47:41 +02:00
14 lines
327 B
Rust
14 lines
327 B
Rust
extern crate ignore;
|
|
|
|
use std::process::Command;
|
|
use ignore::Walk;
|
|
|
|
//#[allow(dead_code)]
|
|
fn main() {
|
|
for result in Walk::new("./ui/src") {
|
|
if let Ok(entry) = result {
|
|
println!("cargo:rerun-if-changed={}", entry.path().display());
|
|
}
|
|
}
|
|
Command::new("./build-dist.sh").status().unwrap();
|
|
} |