From 970c88395dc46367f727a78b4193b46e0018afe5 Mon Sep 17 00:00:00 2001 From: LLouice Date: Sun, 12 May 2024 23:03:22 +0800 Subject: [PATCH] Workspace members: Added symbolic link support --- rye/src/pyproject.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rye/src/pyproject.rs b/rye/src/pyproject.rs index bf32b073f4..9980d225f0 100644 --- a/rye/src/pyproject.rs +++ b/rye/src/pyproject.rs @@ -469,6 +469,7 @@ impl Workspace { self: &'a Arc, ) -> impl Iterator> + 'a { walkdir::WalkDir::new(&self.root) + .follow_links(true) .into_iter() .filter_entry(|entry| { !(entry.file_type().is_dir() && skip_recurse_into(entry.file_name()))