From 937e1c2e373e360fe47e455886d186492248f31f Mon Sep 17 00:00:00 2001 From: Badlop Date: Thu, 15 Jul 2021 01:29:35 +0200 Subject: Add workaround so rebar2 can use Elixir 1.12.0 Notice that Elixir 1.12.0 requires Erlang/OTP 21 or higher BTW, this workaround works only with rebar2... unfortunately rebar3 doesn't compile the elixir files from lib/ --- lib/elixir.app.src | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lib/elixir.app.src (limited to 'lib/elixir.app.src') diff --git a/lib/elixir.app.src b/lib/elixir.app.src new file mode 100644 index 000000000..b53cbdefc --- /dev/null +++ b/lib/elixir.app.src @@ -0,0 +1,11 @@ +{application, elixir, +[{description, "elixir"}, + {vsn, "1.12.0"}, + {modules, [ + elixir + ]}, + {registered, [elixir_config, elixir_code_server]}, + {applications, [kernel,stdlib,compiler]}, + {mod, {elixir,[]}}, + {env, [{ansi_enabled, false}]} +]}. -- cgit v1.2.3