summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-06-20 08:50:26 +0000
committerrinpatch <rinpatch@sdf.org>2019-06-20 08:50:26 +0000
commitba584364e905531417dae2e07675dbbf60c3a007 (patch)
tree16d9aa809ba578f5c462453e9af0de91df873e05 /mix.exs
parent524a66806d21ace82d3edab5e25eecb076a00305 (diff)
parent0e31d195af89551e58070390f74e917c5d1ce0fc (diff)
downloadpleroma-ba584364e905531417dae2e07675dbbf60c3a007.tar.gz
pleroma-ba584364e905531417dae2e07675dbbf60c3a007.zip
Merge branch 'feature/release-update-script' into 'develop'
pleroma_ctl: add an update command Closes #1004 and #988 See merge request pleroma/pleroma!1305
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs7
1 files changed, 4 insertions, 3 deletions
diff --git a/mix.exs b/mix.exs
index 7f8e36cbb..9fdf6e83a 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
@@ -209,6 +209,7 @@ defmodule Pleroma.Mixfile do
branch_name =
with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
+ branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
true <- branch_name != "master" do
branch_name =
String.trim(branch_name)