diff options
Diffstat (limited to 'tvix/build/build.rs')
-rw-r--r-- | tvix/build/build.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tvix/build/build.rs b/tvix/build/build.rs index fe230cbeca8a..909d6bab0875 100644 --- a/tvix/build/build.rs +++ b/tvix/build/build.rs @@ -30,5 +30,7 @@ fn main() -> Result<()> { Some(proto_root) => proto_root.to_str().unwrap().to_owned(), None => "../..".to_string(), }], - ) + )?; + + Ok(()) } |