logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 8dbcff2fed0bf6fb20b70388974fcbe9d3a0aeee
parent: 53c73cd1a3387dbdde283f563c5be4e45ffab05c
Author: rinpatch <rinpatch@sdf.org>
Date:   Sat, 22 Jun 2019 09:20:11 +0000

Merge branch 'mix_sem_ver_version_fix' into 'develop'

Fixed mix version computed for underscore-containing branches

See merge request pleroma/pleroma!1314

Diffstat:

Mmix.exs2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mix.exs b/mix.exs @@ -213,7 +213,7 @@ defmodule Pleroma.Mixfile do true <- branch_name != "master" do branch_name = String.trim(branch_name) - |> String.replace(~r/\W+/, "-") + |> String.replace(~r/[^0-9a-z\-\.]+/i, "-") "-" <> branch_name end