logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 41ff86ca1d56868d51af0a4411beec4f63fa6ba0
parent: b9bc83097d01f445ca30bf0f70242fa50f1f2d40
Author: kaniini <nenolod@gmail.com>
Date:   Tue, 27 Nov 2018 17:10:08 +0000

Merge branch 'fix/version-string-force-git-abbrev-size' into 'develop'

fix: version string: force git abbrev size to 8 chars

Closes #389

See merge request pleroma/pleroma!472

Diffstat:

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

diff --git a/mix.exs b/mix.exs @@ -95,7 +95,7 @@ defmodule Pleroma.Mixfile 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))}