mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Clean up and simplify {vsn, VCS} support
This commit is contained in:
parent
01a7473dac
commit
6056c63eed
1 changed files with 11 additions and 12 deletions
|
@ -89,13 +89,7 @@ app_applications(AppFile) ->
|
|||
app_vsn(AppFile) ->
|
||||
case load_app_file(AppFile) of
|
||||
{ok, _, AppInfo} ->
|
||||
case get_value(vsn, AppInfo, AppFile) of
|
||||
git -> vcs_vsn(git);
|
||||
hg -> vcs_vsn(hg);
|
||||
bzr -> vcs_vsn(bzr);
|
||||
svn -> vcs_vsn(svn);
|
||||
Version -> Version
|
||||
end;
|
||||
vcs_vsn(get_value(vsn, AppInfo, AppFile));
|
||||
{error, Reason} ->
|
||||
?ABORT("Failed to extract vsn from ~s: ~p\n",
|
||||
[AppFile, Reason])
|
||||
|
@ -132,11 +126,16 @@ get_value(Key, AppInfo, AppFile) ->
|
|||
end.
|
||||
|
||||
vcs_vsn(Vcs) ->
|
||||
Cmd = vcs_vsn_cmd(Vcs),
|
||||
case vcs_vsn_cmd(Vcs) of
|
||||
{unknown, VsnString} ->
|
||||
VsnString;
|
||||
Cmd ->
|
||||
{ok, VsnString} = rebar_utils:sh(Cmd, [{use_stdout, false}]),
|
||||
string:strip(VsnString, right, $\n).
|
||||
string:strip(VsnString, right, $\n)
|
||||
end.
|
||||
|
||||
vcs_vsn_cmd(git) -> "git describe --always --tags";
|
||||
vcs_vsn_cmd(hg) -> "hg identify -i";
|
||||
vcs_vsn_cmd(bzr) -> "bzr revno";
|
||||
vcs_vsn_cmd(svn) -> "svnversion".
|
||||
vcs_vsn_cmd(svn) -> "svnversion";
|
||||
vcs_vsn_cmd(Version) -> {unknown, Version}.
|
||||
|
|
Loading…
Reference in a new issue