forked from AkkomaGang/akkoma
version string: force git abbrev size to 8 chars
Fixes #389 Older git versions defaults to 7 chars.
This commit is contained in:
parent
675653ceb7
commit
f70b20e499
1 changed files with 1 additions and 1 deletions
2
mix.exs
2
mix.exs
|
@ -95,7 +95,7 @@ defp version(version) do
|
|||
{git_tag, git_pre_release} =
|
||||
with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
|
||||
tag = String.trim(tag),
|
||||
{describe, 0} <- System.cmd("git", ["describe", "--tags"]),
|
||||
{describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
|
||||
describe = String.trim(describe),
|
||||
ahead <- String.replace(describe, tag, "") do
|
||||
{String.replace_prefix(tag, "v", ""), if(ahead != "", do: String.trim(ahead))}
|
||||
|
|
Loading…
Reference in a new issue