mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 17:17:52 +02:00
svn2revisioninc, Installer: use first-parent for git describe
This commit is contained in:
parent
c4109375a5
commit
b26d9aa832
@ -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 -
|
||||
|
@ -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
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user