Treat the manifest path as a file if it doesn't start with http

This commit is contained in:
Ekaterina Vaartis 2019-04-18 20:06:59 +03:00
parent aaaa428512
commit 98d4b3de53
1 changed files with 7 additions and 1 deletions

View File

@ -231,7 +231,13 @@ defmodule Mix.Tasks.Pleroma.Emoji do
end
defp fetch_manifest(from) do
Tesla.get!(from).body |> Poison.decode!()
Poison.decode!(
if String.starts_with?(from, "http") do
Tesla.get!(from).body
else
File.read!(from)
end
)
end
defp parse_global_opts(args) do