This commit is contained in:
Alex S 2019-06-15 16:36:13 +08:00
parent 501705438f
commit e02f22d779
1 changed files with 5 additions and 1 deletions

View File

@ -208,7 +208,11 @@ defmodule Pleroma.Mixfile do
branch_name =
with {branch_name, 0} <- System.cmd("git", ["rev-parse", "--abbrev-ref", "HEAD"]),
true <- branch_name != "master" do
"-" <> String.trim(branch_name)
branch_name =
String.trim(branch_name)
|> String.replace(~r/\W+/, "-")
"-" <> branch_name
end
full_version =