build.rs: unwrap result

This commit is contained in:
figsoda 2021-08-14 21:33:22 -04:00
parent 782c709f59
commit 1909a106ab

View file

@ -18,7 +18,7 @@ fn main() {
macro_rules! generate {
($($g:ident),*) => {
$(generate_to::<generators::$g, _, _>(app, "mmtc", out);)*
$(generate_to::<generators::$g, _, _>(app, "mmtc", out).unwrap();)*
}
}