Diamond dependencies checked twice #756
|
Apparently if I have diamond dependencies they are checked twice, thus polluting the tool output. I happen to have a For this reason, I seen taskfile displaying it as checked multiple times. Performance wise is not a big deal as that is skipped, but it does affect the visual, due to extra output. Any idea if we can avoid displaying these multiple times? |
Answered by
andreynering
Jun 6, 2022
Replies: 1 comment 3 replies
|
Declaring https://taskfile.dev/usage/#limiting-when-tasks-run You can also set at the root of the file if you want that by default for all tasks. |
3 replies
Answer selected by
ssbarnea
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Declaring
run: oncefor the task is probably the solution:https://taskfile.dev/usage/#limiting-when-tasks-run
You can also set at the root of the file if you want that by default for all tasks.