We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af4e5c3 commit 1d0dc2eCopy full SHA for 1d0dc2e
1 file changed
src/usr/local/containerbase/tools/v2/elixir.sh
@@ -35,7 +35,7 @@ function install_tool () {
35
local versioned_tool_path
36
local file
37
local base_url="https://github.com/elixir-lang/elixir/releases/download"
38
- local base_file=elixir-otp-26.zip
+ local base_file=elixir-otp-27.zip
39
40
check_command erl
41
@@ -49,6 +49,8 @@ function install_tool () {
49
base_file=elixir-otp-24.zip
50
elif dpkg --compare-versions "${TOOL_VERSION}" lt 1.19.0; then
51
base_file=elixir-otp-25.zip
52
+ elif dpkg --compare-versions "${TOOL_VERSION}" lt 1.20.0; then
53
+ base_file=elixir-otp-26.zip
54
fi
55
56
file=$(get_from_url "${base_url}/v${TOOL_VERSION}/${base_file}")
0 commit comments