We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bb266d commit 6f9b327Copy full SHA for 6f9b327
lib/canonical_version.sh
@@ -33,6 +33,10 @@ fetch_erlang_versions() {
33
url="https://builds.hex.pm/builds/otp/ubuntu-22.04/builds.txt"
34
curl -s "$url" | awk '/^OTP-([0-9.]+ )/ {print substr($1,5)}'
35
;;
36
+ "heroku-24")
37
+ url="https://builds.hex.pm/builds/otp/ubuntu-24.04/builds.txt"
38
+ curl -s "$url" | awk '/^OTP-([0-9.]+ )/ {print substr($1,5)}'
39
+ ;;
40
*)
41
url="https://raw.githubusercontent.com/HashNuke/heroku-buildpack-elixir-otp-builds/master/otp-versions"
42
curl -s "$url"
0 commit comments