forked from AkkomaGang/akkoma
Fix priv/static/instance/static to be just instance/static
It was a misunderstanding
This commit is contained in:
parent
31cff7dbca
commit
53a3e61016
2 changed files with 9 additions and 30 deletions
|
@ -137,11 +137,8 @@ def run(["get-packs" | args]) do
|
|||
|
||||
IO.puts(IO.ANSI.format(["Unpacking ", :bright, pack_name]))
|
||||
|
||||
static_path = Path.join(:code.priv_dir(:pleroma), "static")
|
||||
|
||||
pack_path =
|
||||
Path.join([
|
||||
static_path,
|
||||
Pleroma.Config.get!([:instance, :static_dir]),
|
||||
"emoji",
|
||||
pack_name
|
||||
|
@ -161,19 +158,12 @@ def run(["get-packs" | args]) do
|
|||
|
||||
IO.puts(IO.ANSI.format(["Writing emoji.txt for ", :bright, pack_name]))
|
||||
|
||||
common_pack_path =
|
||||
Path.join([
|
||||
"/",
|
||||
Pleroma.Config.get!([:instance, :static_dir]),
|
||||
"emoji",
|
||||
pack_name
|
||||
])
|
||||
|
||||
emoji_txt_str =
|
||||
Enum.map(
|
||||
files,
|
||||
fn {shortcode, path} ->
|
||||
"#{shortcode}, #{Path.join(common_pack_path, path)}"
|
||||
emojo_path = Path.join("/emoji/#{pack_name}", path)
|
||||
"#{shortcode}, #{emojo_path}"
|
||||
end
|
||||
)
|
||||
|> Enum.join("\n")
|
||||
|
|
|
@ -81,14 +81,11 @@ def code_change(_old_vsn, state, _extra) do
|
|||
end
|
||||
|
||||
defp load do
|
||||
static_path = Path.join(:code.priv_dir(:pleroma), "static")
|
||||
|
||||
emoji_dir_path =
|
||||
Path.join([
|
||||
static_path,
|
||||
Path.join(
|
||||
Pleroma.Config.get!([:instance, :static_dir]),
|
||||
"emoji"
|
||||
])
|
||||
)
|
||||
|
||||
case File.ls(emoji_dir_path) do
|
||||
{:error, :enoent} ->
|
||||
|
@ -135,17 +132,9 @@ defp load_pack(pack_dir) do
|
|||
"No emoji.txt found for pack \"#{pack_name}\", assuming all .png files are emoji"
|
||||
)
|
||||
|
||||
common_pack_path =
|
||||
Path.join([
|
||||
"/",
|
||||
Pleroma.Config.get!([:instance, :static_dir]),
|
||||
"emoji",
|
||||
pack_name
|
||||
])
|
||||
|
||||
make_shortcode_to_file_map(pack_dir, [".png"])
|
||||
|> Enum.map(fn {shortcode, rel_file} ->
|
||||
filename = Path.join(common_pack_path, rel_file)
|
||||
make_shortcode_to_file_map(pack_dir, [".png"]) |>
|
||||
Enum.map(fn {shortcode, rel_file} ->
|
||||
filename = Path.join("/emoji/#{pack_name}", rel_file)
|
||||
|
||||
{shortcode, filename, [to_string(match_extra(@groups, filename))]}
|
||||
end)
|
||||
|
|
Loading…
Reference in a new issue