forked from AkkomaGang/akkoma
Treat the manifest path as a file if it doesn't start with http
This commit is contained in:
parent
aaaa428512
commit
98d4b3de53
1 changed files with 7 additions and 1 deletions
|
@ -231,7 +231,13 @@ def run(["gen-pack", src]) 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
|
||||
|
|
Loading…
Reference in a new issue