forked from AkkomaGang/akkoma
Merge branch 'remove-tag-warning' into 'develop'
Mix: Swallow git error messages during version number handling. See merge request pleroma/pleroma!1247
This commit is contained in:
commit
5188add534
1 changed files with 2 additions and 1 deletions
3
mix.exs
3
mix.exs
|
@ -157,7 +157,8 @@ defp aliases do
|
||||||
# * the mix environment if different than prod
|
# * the mix environment if different than prod
|
||||||
defp version(version) do
|
defp version(version) do
|
||||||
{git_tag, git_pre_release} =
|
{git_tag, git_pre_release} =
|
||||||
with {tag, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=0"]),
|
with {tag, 0} <-
|
||||||
|
System.cmd("git", ["describe", "--tags", "--abbrev=0"], stderr_to_stdout: true),
|
||||||
tag = String.trim(tag),
|
tag = String.trim(tag),
|
||||||
{describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
|
{describe, 0} <- System.cmd("git", ["describe", "--tags", "--abbrev=8"]),
|
||||||
describe = String.trim(describe),
|
describe = String.trim(describe),
|
||||||
|
|
Loading…
Reference in a new issue