Skip to content
Snippets Groups Projects
Commit db9a82d1 authored by lain's avatar lain
Browse files

Linting.

parent b6cf62dd
No related branches found
No related tags found
No related merge requests found
......@@ -41,11 +41,13 @@ def project do
# Type `mix help compile.app` for more information.
def application do
extra_applications = [:logger, :runtime_tools, :comeonin, :quack]
extra_applications = if Application.get_env(:esshd, :enabled, false) do
[:esshd | extra_applications]
else
extra_applications
end
extra_applications =
if Application.get_env(:esshd, :enabled, false) do
[:esshd | extra_applications]
else
extra_applications
end
[
mod: {Pleroma.Application, []},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment