-
Notifications
You must be signed in to change notification settings - Fork 515
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hanging on invalid default recipe #2621
Comments
Ah, I guess this is because just uses some flags as commands (presumably to avoid conflicting with task names), and |
I'll repurpose this for that hanging bug I noticed. If you add that default recipe, and invoke
|
Seems the actual issue is that |
Ah yep that sounds like the right diagnosis. I would expect https://docs.rs/clap/latest/clap/struct.Arg.html#method.requires to be set for Lines 286 to 293 in 49f282f
|
Seems reasonable, especially since |
I mistakenly wrote this in my justfile:
Which causes
just
to hang when invoked. This seems to be becausejust --list-submodules
is invalid unless used alongside--list
-just --list --list-submodules
works as expected (hanging on that default recipe might also be some kind of bug?).The text was updated successfully, but these errors were encountered: