fix(cli): recursive paths provided by user getting treated non-recursively (#828)

This commit is contained in:
Adit 2024-04-30 02:10:28 -05:00 committed by GitHub
parent e0084e69f8
commit 4affed6fff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1243,7 +1243,7 @@ pub async fn get_args() -> Result<(Args, Option<WorkerGuard>)> {
canonicalize(project_origin.join(path)).into_diagnostic() canonicalize(project_origin.join(path)).into_diagnostic()
} }
} }
.map(WatchedPath::non_recursive) .map(WatchedPath::recursive)
}) })
.chain(take(&mut args.non_recursive_paths).into_iter().map(|path| { .chain(take(&mut args.non_recursive_paths).into_iter().map(|path| {
{ {