You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given two Taskfiles in a project: one at the root and the other in a subdirectory.
If the subdirectory Taskfile has run: once set at the global/top level (rather than set explicitly per-task) and the root Taskfile includes the subdirectory Taskfile, the task calls from the root directory can potentially run the subdirectory Taskfile tasks more than once.
Given two Taskfiles in a project: one at the root and the other in a subdirectory.
If the subdirectory Taskfile has
run: once
set at the global/top level (rather than set explicitly per-task) and the root Taskfile includes the subdirectory Taskfile, thetask
calls from the root directory can potentially run the subdirectory Taskfile tasks more than once./Taskfile.yaml
:/subdir/Taskfile.yaml
:From inside the subdirectory,
run: once
works fine:From the root directory, the subdirectory Taskfile's
run: once
setting has no effect:These other issues/PRs seem similar/relevant, but distinct from this particular situation:
The text was updated successfully, but these errors were encountered: