Simplify watch loop

main
Charlotte Som 2022-03-05 15:25:54 +00:00
parent 89f26b9a0e
commit 26b30cd030
1 changed files with 2 additions and 5 deletions

View File

@ -74,11 +74,8 @@ fn main() {
let mut watcher = watcher(tx, Duration::from_millis(100)).unwrap();
watcher.watch("./src", RecursiveMode::Recursive).unwrap();
loop {
match rx.recv() {
Ok(_) => build(),
Err(_) => break,
}
while rx.recv().is_ok() {
build()
}
}
}