jdx / mise

dev tools, env vars, task runner
https://mise.jdx.dev
MIT License
8.07k stars 211 forks source link

fix: allow glob patterns in tasks outputs and sources #2286

Closed adamdickinson closed 2 weeks ago

adamdickinson commented 2 weeks ago

Fixes #2285, where using glob patterns in a task's sources or outputs causes it to infinite loop/stall.

After some investigation, I found that the issue occurred during usage of the globwalk crate. Switching the globwalk crate for the glob crate instead seems to have done the trick.