From 194e9cc886df780ea30605eace3ad99882407524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Bara=C3=BAna?= Date: Sun, 9 Nov 2025 15:18:20 -0300 Subject: [PATCH] Remove erts from extra_applications Running `mix release` was not working with Elixir 1.19.2, related to this https://github.com/elixir-lang/elixir/commit/bea1c6c58edff9c77a71ab1e94d096dd4496f3bb --- apps/expert/mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/expert/mix.exs b/apps/expert/mix.exs index 979fb235..219b9428 100644 --- a/apps/expert/mix.exs +++ b/apps/expert/mix.exs @@ -23,7 +23,7 @@ defmodule Expert.MixProject do def application do [ - extra_applications: [:logger, :runtime_tools, :kernel, :erts, :observer], + extra_applications: [:logger, :runtime_tools, :kernel, :observer], mod: {Expert.Application, []} ] end