mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Revert 15b7798e4
and restore old git-describe call
Restore previous 'git describe' behaviour as discussed here: http://lists.basho.com/pipermail/rebar_lists.basho.com/2012-September/001713.html
This commit is contained in:
parent
3e3e639c89
commit
1b52a597c4
1 changed files with 1 additions and 11 deletions
|
@ -475,17 +475,7 @@ vcs_vsn_1(Vcs, Dir) ->
|
||||||
end
|
end
|
||||||
end.
|
end.
|
||||||
|
|
||||||
vcs_vsn_cmd(git) ->
|
vcs_vsn_cmd(git) -> "git describe --always --tags";
|
||||||
%% git describe the last commit that touched CWD
|
|
||||||
%% required for correct versioning of apps in subdirs, such as apps/app1
|
|
||||||
case os:type() of
|
|
||||||
{win32,nt} ->
|
|
||||||
"FOR /F \"usebackq tokens=* delims=\" %i in "
|
|
||||||
"(`git log -n 1 \"--pretty=format:%h\" .`) do "
|
|
||||||
"@git describe --always --tags %i";
|
|
||||||
_ ->
|
|
||||||
"git describe --always --tags `git log -n 1 --pretty=format:%h .`"
|
|
||||||
end;
|
|
||||||
vcs_vsn_cmd(hg) -> "hg identify -i";
|
vcs_vsn_cmd(hg) -> "hg identify -i";
|
||||||
vcs_vsn_cmd(bzr) -> "bzr revno";
|
vcs_vsn_cmd(bzr) -> "bzr revno";
|
||||||
vcs_vsn_cmd(svn) -> "svnversion";
|
vcs_vsn_cmd(svn) -> "svnversion";
|
||||||
|
|
Loading…
Reference in a new issue