File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ erlang_builds_url() {
8
8
" heroku-22" )
9
9
erlang_builds_url=" https://repo.hex.pm/builds/otp/ubuntu-22.04"
10
10
;;
11
+ " scalingo-20" )
12
+ erlang_builds_url=" https://repo.hex.pm/builds/otp/ubuntu-20.04"
13
+ ;;
11
14
* )
12
15
erlang_builds_url=" https://s3.amazonaws.com/heroku-buildpack-elixir/erlang/cedar-14"
13
16
;;
@@ -26,6 +29,10 @@ fetch_erlang_versions() {
26
29
url=" https://repo.hex.pm/builds/otp/ubuntu-20.04/builds.txt"
27
30
curl -s " $url " | awk ' /^OTP-([0-9.]+ )/ {print substr($1,5)}'
28
31
;;
32
+ " scalingo-20" )
33
+ url=" https://repo.hex.pm/builds/otp/ubuntu-20.04/builds.txt"
34
+ curl -s " $url " | awk ' /^OTP-([0-9.]+ )/ {print substr($1,5)}'
35
+ ;;
29
36
" heroku-22" )
30
37
url=" https://repo.hex.pm/builds/otp/ubuntu-22.04/builds.txt"
31
38
curl -s " $url " | awk ' /^OTP-([0-9.]+ )/ {print substr($1,5)}'
You can’t perform that action at this time.
0 commit comments