mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-13 07:41:11 +01:00
fix(cli): recursive paths provided by user getting treated non-recursively (#828)
This commit is contained in:
parent
e0084e69f8
commit
4affed6fff
1 changed files with 1 additions and 1 deletions
|
@ -1243,7 +1243,7 @@ pub async fn get_args() -> Result<(Args, Option<WorkerGuard>)> {
|
|||
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| {
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue