From b704d00531809295d55603be8b0e190bf5a5e9dd Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Tue, 23 Apr 2019 22:31:25 +0200 Subject: [PATCH] Fail on error --- build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index fd83ed0..bf5680e 100644 --- a/build.rs +++ b/build.rs @@ -9,5 +9,6 @@ fn main() { generate_cargo_keys(flags).expect("Unable to generate the cargo keys!"); Ructe::from_env() .expect("ructe") - .compile_templates("templates"); + .compile_templates("templates") + .unwrap(); }