diff options
author | Mark Felder <feld@feld.me> | 2024-01-31 14:08:29 -0500 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-02-02 12:14:21 -0500 |
commit | ac7f2cf105204123c420799bb867005eef14053b (patch) | |
tree | d8e3936ef37cce2925c4b2675e4e06876a05989e /lib/mix/tasks | |
parent | 15621b72842ad7dc1b1be1a480045498cf815f9b (diff) | |
download | pleroma-ac7f2cf105204123c420799bb867005eef14053b.tar.gz pleroma-ac7f2cf105204123c420799bb867005eef14053b.zip |
Pleroma Emoji mix task: fix gradient error
lib/mix/tasks/pleroma/emoji.ex: The tuple {:cwd, pack_path} on line 114 is expected to have type :cooked
| :keep_old_files
| :memory
| :verbose
| {:cwd, list(char())}
| {:file_filter, (record(:zip_file) -> boolean())}
| {:file_list, list(:file.name())} but it has type {:cwd, binary()}
Diffstat (limited to 'lib/mix/tasks')
-rw-r--r-- | lib/mix/tasks/pleroma/emoji.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mix/tasks/pleroma/emoji.ex b/lib/mix/tasks/pleroma/emoji.ex index 537f0715e..8b9c921c8 100644 --- a/lib/mix/tasks/pleroma/emoji.ex +++ b/lib/mix/tasks/pleroma/emoji.ex @@ -111,7 +111,7 @@ defmodule Mix.Tasks.Pleroma.Emoji do {:ok, _} = :zip.unzip(binary_archive, - cwd: pack_path, + cwd: String.to_charlist(pack_path), file_list: files_to_unzip ) |