diff options
author | Ivan Tashkinov <ivant.business@gmail.com> | 2019-06-20 17:54:16 +0300 |
---|---|---|
committer | Ivan Tashkinov <ivant.business@gmail.com> | 2019-06-20 17:54:16 +0300 |
commit | f07003e2183c4e13a428614bd0ce39c9e84e2da2 (patch) | |
tree | 35edd8163cf059a0aece8a01b3e6672fb8fb5ff8 | |
parent | 524a66806d21ace82d3edab5e25eecb076a00305 (diff) | |
download | pleroma-f07003e2183c4e13a428614bd0ce39c9e84e2da2.tar.gz |
Fixed mix version computed for underscore-containing branches to be of SemVer format.
-rw-r--r-- | mix.exs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -212,7 +212,7 @@ defmodule Pleroma.Mixfile do true <- branch_name != "master" do branch_name = String.trim(branch_name) - |> String.replace(~r/\W+/, "-") + |> String.replace(~r/[\W_]+/, "-") "-" <> branch_name end |