diff --git a/dist/index.js b/dist/index.js index 65d5353..b9198cb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -10081,7 +10081,8 @@ async function getElixirVersion(exSpec0, otpVersion0, hexMirrors) { } else { throw new Error( `Requested Elixir / Erlang/OTP version (${exSpec0} / ${otpVersion0}) not ` + - 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?)', + 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?).' + + 'Elixir and Erlang/OTP compatibility can be found at: https://hexdocs.pm/elixir/compatibility-and-deprecations.html', ) } diff --git a/src/setup-beam.js b/src/setup-beam.js index dd988e8..7125a2f 100644 --- a/src/setup-beam.js +++ b/src/setup-beam.js @@ -209,7 +209,8 @@ async function getElixirVersion(exSpec0, otpVersion0, hexMirrors) { } else { throw new Error( `Requested Elixir / Erlang/OTP version (${exSpec0} / ${otpVersion0}) not ` + - 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?)', + 'found in version list (did you check Compatibility between Elixir and Erlang/OTP?).' + + 'Elixir and Erlang/OTP compatibility can be found on: https://hexdocs.pm/elixir/compatibility-and-deprecations.html', ) }