Browse Source

Load ex_syslog and copy pleroma_ctl

tags/v1.1.4
rinpatch 5 years ago
parent
commit
c47dc0de2c
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      mix.exs

+ 12
- 0
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.


Loading…
Cancel
Save