Load ex_syslog and copy pleroma_ctl

This commit is contained in:
rinpatch 2019-06-08 17:17:10 +03:00
parent 3d374bf7df
commit c47dc0de2c
1 changed files with 12 additions and 0 deletions

12
mix.exs
View File

@ -32,10 +32,22 @@ defmodule Pleroma.Mixfile do
],
main: "readme",
output: "priv/static/doc"
],
releases: [
pleroma: [
include_executables_for: [:unix],
applications: [ex_syslogger: :load, syslog: :load],
steps: [:assemble, &copy_pleroma_ctl/1]
]
]
]
end
def copy_pleroma_ctl(%{path: target_path} = release) do
File.cp!("./rel/pleroma_ctl", Path.join([target_path, "bin", "pleroma_ctl"]))
release
end
# Configuration for the OTP application.
#
# Type `mix help compile.app` for more information.