This is an automated email from the ASF dual-hosted git repository.
viirya pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
The following commit(s) were added to refs/heads/main by this push:
new df833418 fix: Running cargo build always triggers rebuild (#579)
df833418 is described below
commit df8334187bad9158a756f86cad1bd5a358847005
Author: Emil Ejbyfeldt <[email protected]>
AuthorDate: Mon Jun 17 18:42:18 2024 +0200
fix: Running cargo build always triggers rebuild (#579)
---
core/build.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/core/build.rs b/core/build.rs
index 4322bbbc..14ff0c11 100644
--- a/core/build.rs
+++ b/core/build.rs
@@ -20,7 +20,7 @@
use std::{fs, io::Result, path::Path};
fn main() -> Result<()> {
- println!("cargo:rerun-if-changed=src/execution/proto/*.proto");
+ println!("cargo:rerun-if-changed=src/execution/proto/");
let out_dir = "src/execution/generated";
if !Path::new(out_dir).is_dir() {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]