From 90598c9ffcc34322acda7a7caff8ec27b97a705e Mon Sep 17 00:00:00 2001 From: kjuulh Date: Wed, 7 Aug 2024 11:31:11 +0200 Subject: [PATCH] feat: wrong exclude Signed-off-by: kjuulh --- crates/dagger-rust/src/source.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/dagger-rust/src/source.rs b/crates/dagger-rust/src/source.rs index ee9a2e3..cc76945 100644 --- a/crates/dagger-rust/src/source.rs +++ b/crates/dagger-rust/src/source.rs @@ -89,7 +89,7 @@ impl RustSource { let mut excludes = self.exclude.clone(); excludes.push("**/src".to_string()); - excludes.push("**/test".to_string()); + excludes.push("**/tests".to_string()); let directory = self.client.host().directory_opts( source.display().to_string(),