From 36f89ec9084d93f9de51a6cff01b9459f6be0357 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Bergstr=C3=B6m?= <114754609+kivra-fabber@users.noreply.github.com> Date: Tue, 16 Jun 2026 15:31:26 +0200 Subject: [PATCH] feat(elixir): use OTP 27 by default for Elixir 1.20 --- src/usr/local/containerbase/tools/v2/elixir.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/usr/local/containerbase/tools/v2/elixir.sh b/src/usr/local/containerbase/tools/v2/elixir.sh index 6cda0faf35..63aedba6fa 100644 --- a/src/usr/local/containerbase/tools/v2/elixir.sh +++ b/src/usr/local/containerbase/tools/v2/elixir.sh @@ -35,7 +35,7 @@ function install_tool () { local versioned_tool_path local file local base_url="https://github.com/elixir-lang/elixir/releases/download" - local base_file=elixir-otp-26.zip + local base_file=elixir-otp-27.zip check_command erl @@ -49,6 +49,8 @@ function install_tool () { base_file=elixir-otp-24.zip elif dpkg --compare-versions "${TOOL_VERSION}" lt 1.19.0; then base_file=elixir-otp-25.zip + elif dpkg --compare-versions "${TOOL_VERSION}" lt 1.20.0; then + base_file=elixir-otp-26.zip fi file=$(get_from_url "${base_url}/v${TOOL_VERSION}/${base_file}")