-
-
Notifications
You must be signed in to change notification settings - Fork 238
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
Erlang.mk fails to retrieve dep versions, causing make rel to fail #924
Comments
What version of git? |
Hi, versions are as follows;
|
Encountered this again recently and forgot I even raised this. Issue description is below with an alternate resolution Building the dependencies and making a rel with a lower version of git (one that doesn't support Even after upgrading git, this isn't resolved. To fix this corruption, a Once this is done, re-run This will result in a successful build rather than |
Glad you got it resolved. I'm not sure there's anything that should be done here, it's likely that the issue will simply "solve itself" by just waiting. But let's keep the ticket open if that can help anyone. |
Considering the move to Relx v4 and the workaround you had I'll be closing this. Thanks! |
Attempting to run
make rel
results in relx failing with a{badmatch, {error, enametoolong}}
exception.Modifying the escript to do
erlang:error(Reason, Args)
on the failure, I can see that it is using the following arguments.Looking in Erlang.mk, I think I can trace this to deps.mk#L662
erlang.mk/core/deps.mk
Line 662 in 472c405
I fixed this by changing the line to
though I'm unsure whether
git -C
is only unsupported in the version I'm running.The text was updated successfully, but these errors were encountered: