A task that is used as depends_post
for another task cannot have depends
for itself.
#3949
Replies: 1 comment
-
I faced the same issue. The below example might be a minimal reproduction. ["util:donothing"]
run = ""
[hi]
depends = "util:donothing"
run = "echo hi"
depends_post = "util:donothing" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So I have a bunch of tasks for my project and you can see the output
mise tasks deps
as belowWhat is interesting here is that the
upload-prompt
tasks actually doesn't have anydepends
but is used as adepends_post
fordeploy
. Somehow mise makes this task depend on all other tasks when used asdepends_post
.If I add a
depends
to theupload-prompt
task the cli just hangs.Beta Was this translation helpful? Give feedback.
All reactions