refactoring

This commit is contained in:
Alex S 2019-09-03 20:11:32 +03:00
parent be32d90a0c
commit 38b29779c3
1 changed files with 9 additions and 9 deletions

View File

@ -27,16 +27,16 @@ defmodule Mix.Tasks.Pleroma.Docs do
defp do_run(implementation) do
start_pleroma()
{descriptions, _paths} = Mix.Config.eval!("config/description.exs")
{:ok, file_path} =
Pleroma.Docs.Generator.process(
implementation,
descriptions[:pleroma][:config_description]
)
with {descriptions, _paths} <- Mix.Config.eval!("config/description.exs"),
{:ok, file_path} <-
Pleroma.Docs.Generator.process(
implementation,
descriptions[:pleroma][:config_description]
) do
type = if implementation == Pleroma.Docs.Markdown, do: "Markdown", else: "JSON"
type = if implementation == Pleroma.Docs.Markdown, do: "Markdown", else: "JSON"
Mix.shell().info([:green, "#{type} docs successfully generated to #{file_path}."])
Mix.shell().info([:green, "#{type} docs successfully generated to #{file_path}."])
end
end
end