diff options
author | rinpatch <rinpatch@sdf.org> | 2019-10-14 19:14:47 +0000 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-10-14 19:14:47 +0000 |
commit | c00797d08ef3e6c57250c9f013b6f912292b031b (patch) | |
tree | 878dbbb34307c16a3e6ad996d18b4571cce60e06 | |
parent | 988654a720e4e61215a5c3dc72a2ca76b6a38042 (diff) | |
parent | 0733da3205caf1f014e4062cbebabba2760686aa (diff) | |
download | pleroma-c00797d08ef3e6c57250c9f013b6f912292b031b.tar.gz |
Merge branch 'fix/version-branch-skip' into 'stable'
Fix hiding branch name logic
See merge request pleroma/pleroma!1845
-rw-r--r-- | mix.exs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 = |