"does not contain submodule" error after upgrade #2245
Answered
by
simonmichael
simonmichael
asked this question in
Q&A
-
Thanks for the new releases. Alas after upgrading from 1.25.2 to 1.30.1, my 1500 line justfile no longer works:
My question: what's the most efficient way to debug this failure ? I guess maybe it should report a line number here. |
Beta Was this translation helpful? Give feedback.
Answered by
simonmichael
Jul 14, 2024
Replies: 1 comment 1 reply
-
I used divide and conquer commenting. (For the record, my justfile's default rule ran |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
simonmichael
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I used divide and conquer commenting. (For the record, my justfile's default rule ran
just -lu
, which no longer works as -l now takes an optional argument; fixed by changing it tojust -ul
.)