Sfoglia il codice sorgente

Merge pull request #825 from fauxsoup/git-versioning-2

Git versioning 2
pull/834/head
Tristan Sloughter 9 anni fa
parent
commit
86478aa2e6
1 ha cambiato i file con 8 aggiunte e 2 eliminazioni
  1. +8
    -2
      src/rebar_git_resource.erl

+ 8
- 2
src/rebar_git_resource.erl Vedi File

@ -194,10 +194,16 @@ parse_tags(Dir) ->
{error, _} ->
{undefined, "0.0.0"};
{ok, Line} ->
case re:run(Line, "(\\(|\\s)tag:\\s(v?([^,\\)]+))", [{capture, [2, 3], list}]) of
case re:run(Line, "(\\(|\\s)(HEAD,\\s)tag:\\s(v?([^,\\)]+))", [{capture, [3, 4], list}]) of
{match,[Tag, Vsn]} ->
{Tag, Vsn};
nomatch ->
{undefined, "0.0.0"}
case rebar_utils:sh("git describe --tags --abbrev=0",
[{use_stdout, false}, return_on_error, {cd, Dir}]) of
{error, _} ->
{undefined, "0.0.0"};
{ok, LatestVsn} ->
{undefined, string:strip(LatestVsn, both, $\n)}
end
end
end.

Caricamento…
Annulla
Salva