Skip to content
Snippets Groups Projects
Commit 2f0ed5f6 authored by rinpatch's avatar rinpatch
Browse files

Fix hiding branch name logic

parent 8b39d6f9
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,7 @@ defp version(version) 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 =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment