forked from AkkomaGang/akkoma
bugfix
This commit is contained in:
parent
501705438f
commit
e02f22d779
1 changed files with 5 additions and 1 deletions
6
mix.exs
6
mix.exs
|
@ -208,7 +208,11 @@ defp version(version) 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 =
|
||||
|
|
Loading…
Reference in a new issue