Link to the Elixir/Erlang compatibility page (#209)

54d4f15 · Jason Axelson · 2023-06-15 13:45

2 files +4 -2
Message
{commit_body(@commit)}

Files changed

modified dist/index.js
+2 −1
@@ -10081,7 +10081,8 @@ async function getElixirVersion(exSpec0, otpVersion0, hexMirrors) {
10081 10081 } else {
10082 10082 throw new Error(
10083 10083 `Requested Elixir / Erlang/OTP version (${exSpec0} / ${otpVersion0}) not ` +
10084 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?)',
10084 + 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?).' +
10085 + 'Elixir and Erlang/OTP compatibility can be found at: https://hexdocs.pm/elixir/compatibility-and-deprecations.html',
10085 10086 )
10086 10087 }
10087 10088
modified src/setup-beam.js
+2 −1
@@ -209,7 +209,8 @@ async function getElixirVersion(exSpec0, otpVersion0, hexMirrors) {
209 209 } else {
210 210 throw new Error(
211 211 `Requested Elixir / Erlang/OTP version (${exSpec0} / ${otpVersion0}) not ` +
212 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?)',
212 + 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?).' +
213 + 'Elixir and Erlang/OTP compatibility can be found on: https://hexdocs.pm/elixir/compatibility-and-deprecations.html',
213 214 )
214 215 }
215 216

Parents: ea13066