Rename function

This commit is contained in:
kPherox 2020-04-09 23:19:41 +00:00
parent 0e8f6d24b8
commit c2aad36aa8
1 changed files with 2 additions and 2 deletions

View File

@ -37,13 +37,13 @@ defmodule Pleroma.Mixfile do
pleroma: [ pleroma: [
include_executables_for: [:unix], include_executables_for: [:unix],
applications: [ex_syslogger: :load, syslog: :load], applications: [ex_syslogger: :load, syslog: :load],
steps: [:assemble, &put_files/1, &copy_files/1, &copy_nginx_config/1] steps: [:assemble, &put_otp_version/1, &copy_files/1, &copy_nginx_config/1]
] ]
] ]
] ]
end end
def put_files(%{path: target_path} = release) do def put_otp_version(%{path: target_path} = release) do
File.write!( File.write!(
Path.join([target_path, "OTP_VERSION"]), Path.join([target_path, "OTP_VERSION"]),
Pleroma.OTPVersion.version() Pleroma.OTPVersion.version()