svn2revisioninc, Installer: use first-parent for git describe

This commit is contained in:
Martin 2021-10-09 21:38:25 +02:00
parent c4109375a5
commit b26d9aa832
3 changed files with 3 additions and 2 deletions

View File

@ -78,6 +78,7 @@ else
echo "extracting lazarus from local svn ..."
LazSrcDir=$(pwd | sed -e 's#/tools/install.*$##')
#Revision=$(svnversion $LazSrcDir) - comment this out as svn no longer works
Revision=$(git -C $LazSrcDir describe --always --first-parent)
cd $TmpDir
cp -a $LazSrcDir $TmpLazDir #can't use svn export anymore
cd -

View File

@ -1,4 +1,4 @@
%GIT% -C %1 describe --always > gitinfo.txt
%GIT% -C %1 describe --always --first-parent > gitinfo.txt
set /P SVNINFO=<gitinfo.txt

View File

@ -734,7 +734,7 @@ function TSvn2RevisionApplication.GitDescribeCommit(KeepRevStr: Boolean
var
s: string;
begin
Result := RunCommand('git', ['describe', '--always'], s);
Result := RunCommand('git', ['describe', '--always', '--first-parent'], s);
if not Result then
exit;