taylor / kiex

Elixir version manager
http://taylor.github.io/kiex/
MIT License
766 stars 65 forks source link

Format of RELEASES file changed in OTP 20.1 #78

Closed joedevivo closed 6 years ago

joedevivo commented 6 years ago

as of OTP 20.1, the RELEASES file starts with a line like this: %% coding: utf-8.

This had kiex telling me that it Failed to extract the erlang release!. This isn't the cleanest solution. but I was able to build elixir with OTPs 20.0.5 and 20.1.

20.1:

%% coding: utf-8
[{release,"Erlang/OTP","20","9.1",
          [{kernel,"5.4","/Users/joe/.kerl/installs/20.1/lib/kernel-5.4"},
           {stdlib,"3.4.2","/Users/joe/.kerl/installs/20.1/lib/stdlib-3.4.2"},
           {sasl,"3.1","/Users/joe/.kerl/installs/20.1/lib/sasl-3.1"}],
          permanent}].

20.0.5:

[{release,"Erlang/OTP","20","9.0.5",
          [{kernel,"5.3.1","/Users/joe/.kerl/installs/20.0.5/lib/kernel-5.3.1"},
           {stdlib,"3.4.1","/Users/joe/.kerl/installs/20.0.5/lib/stdlib-3.4.1"},
           {sasl,"3.0.4","/Users/joe/.kerl/installs/20.0.5/lib/sasl-3.0.4"}],
          permanent}].
joedevivo commented 6 years ago

75 is better. Hi Kenji!