diff options
author | Badlop <badlop@process-one.net> | 2021-07-15 01:29:35 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2021-07-16 16:43:08 +0200 |
commit | 937e1c2e373e360fe47e455886d186492248f31f (patch) | |
tree | 1d68d301f3fc72bc9ea5609c8ac5f577218300b5 /lib/elixir.app.src | |
parent | As Mix config now must be evaluated at runtime, rename to runtime.exs (diff) |
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/
Diffstat (limited to 'lib/elixir.app.src')
-rw-r--r-- | lib/elixir.app.src | 11 |
1 files changed, 11 insertions, 0 deletions
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}]} +]}. |