1
1

Add support for git to make_dist_tarball

This commit was SVN r28234.
Этот коммит содержится в:
Nathan Hjelm 2013-03-27 17:48:09 +00:00
родитель e7ac6c9bde
Коммит 4719e545f0

7
contrib/dist/make_dist_tarball поставляемый
Просмотреть файл

@ -341,6 +341,13 @@ elif test -d .hg; then
fi
echo "*** Getting hg version number..."
svn_r=hg`hg tip | grep ^changeset: | head -n 1 | cut -d: -f3`
elif test -d .git; then
echo "*** Removing old VERSION file..."
rm -f VERSION
echo "*** Restoring pristine VERSION file..."
git checkout VERSION
echo "*** Getting git version number..."
svn_r=git`git log -1 --oneline | head -1 | cut -d' ' -f2`
fi
echo " Repo rev number: $svn_r"
if test "$svn_r" = ""; then