aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-06-19 03:51:59 +0300
committerrinpatch <rinpatch@sdf.org>2019-06-19 03:52:03 +0300
commita0a1361888a3986d589720a7eb39d49c913154f2 (patch)
tree8c86adab7da278d24c6f4c2a5a5a2f700936edf0
parent3d76420512111006f678f820d1a20f866b07bdb9 (diff)
downloadpleroma-a0a1361888a3986d589720a7eb39d49c913154f2.tar.gz
Refactor pleroma_ctl copying to a generic function for copying files into the release dir
-rw-r--r--mix.exs6
-rwxr-xr-xrel/files/bin/pleroma_ctl (renamed from rel/pleroma_ctl)0
2 files changed, 3 insertions, 3 deletions
diff --git a/mix.exs b/mix.exs
index df3253d5a..781560a0a 100644
--- a/mix.exs
+++ b/mix.exs
@@ -37,14 +37,14 @@ defmodule Pleroma.Mixfile do
pleroma: [
include_executables_for: [:unix],
applications: [ex_syslogger: :load, syslog: :load],
- steps: [:assemble, &copy_pleroma_ctl/1]
+ steps: [:assemble, &copy_files/1]
]
]
]
end
- def copy_pleroma_ctl(%{path: target_path} = release) do
- File.cp!("./rel/pleroma_ctl", Path.join([target_path, "bin", "pleroma_ctl"]))
+ def copy_files(%{path: target_path} = release) do
+ File.cp_r!("./rel/files", target_path)
release
end
diff --git a/rel/pleroma_ctl b/rel/files/bin/pleroma_ctl
index ac7339762..ac7339762 100755
--- a/rel/pleroma_ctl
+++ b/rel/files/bin/pleroma_ctl