about summary refs log tree commit diff
path: root/tvix/castore/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/castore/build.rs')
-rw-r--r--tvix/castore/build.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/castore/build.rs b/tvix/castore/build.rs
index 339ba867dd..6424487b21 100644
--- a/tvix/castore/build.rs
+++ b/tvix/castore/build.rs
@@ -19,6 +19,7 @@ fn main() -> Result<()> {
     builder
         .build_server(true)
         .build_client(true)
+        .emit_rerun_if_changed(false)
         .compile_with_config(
             config,
             &[
@@ -33,6 +34,5 @@ fn main() -> Result<()> {
                 Some(proto_root) => proto_root.to_str().unwrap().to_owned(),
                 None => "../..".to_string(),
             }],
-        )?;
-    Ok(())
+        )
 }