diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-07-09 10:53:51 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-07-09 10:53:51 -0500 |
commit | d23804f191eb9e14cfb087863320ae90653c9544 (patch) | |
tree | e2e18ee90e3a373571a1038befdd3e37a0942ce7 /lib/mix/tasks | |
parent | 6b14f0c514d19fe7c9717dd9d3ada29e442ba706 (diff) | |
download | pleroma-d23804f191eb9e14cfb087863320ae90653c9544.tar.gz |
Use the Pleroma.Config alias
Diffstat (limited to 'lib/mix/tasks')
-rw-r--r-- | lib/mix/tasks/pleroma/instance.ex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mix/tasks/pleroma/instance.ex b/lib/mix/tasks/pleroma/instance.ex index 86409738a..91440b453 100644 --- a/lib/mix/tasks/pleroma/instance.ex +++ b/lib/mix/tasks/pleroma/instance.ex @@ -145,7 +145,7 @@ defmodule Mix.Tasks.Pleroma.Instance do options, :uploads_dir, "What directory should media uploads go in (when using the local uploader)?", - Pleroma.Config.get([Pleroma.Uploaders.Local, :uploads]) + Config.get([Pleroma.Uploaders.Local, :uploads]) ) |> Path.expand() @@ -154,7 +154,7 @@ defmodule Mix.Tasks.Pleroma.Instance do options, :static_dir, "What directory should custom public files be read from (custom emojis, frontend bundle overrides, robots.txt, etc.)?", - Pleroma.Config.get([:instance, :static_dir]) + Config.get([:instance, :static_dir]) ) |> Path.expand() |