summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrinpatch <rinpatch@sdf.org>2019-10-14 19:14:47 +0000
committerrinpatch <rinpatch@sdf.org>2019-10-14 19:14:47 +0000
commitc00797d08ef3e6c57250c9f013b6f912292b031b (patch)
tree878dbbb34307c16a3e6ad996d18b4571cce60e06
parent988654a720e4e61215a5c3dc72a2ca76b6a38042 (diff)
parent0733da3205caf1f014e4062cbebabba2760686aa (diff)
Merge branch 'fix/version-branch-skip' into 'stable'
Fix hiding branch name logic See merge request pleroma/pleroma!1845
-rw-r--r--mix.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 9bd807d8c..56a11cac3 100644
--- a/mix.exs
+++ b/mix.exs
@@ -216,7 +216,7 @@ defmodule Pleroma.Mixfile do
branch_name <- String.trim(branch_name),
branch_name <- System.get_env("PLEROMA_BUILD_BRANCH") || branch_name,
true <-
- !Enum.all?(["master", "HEAD", "release/", "stable"], fn name ->
+ !Enum.any?(["master", "HEAD", "release/", "stable"], fn name ->
String.starts_with?(name, branch_name)
end) do
branch_name =