fix ARI for git migration

This fixes the ARI script for the git migration.

	* contrib/ari/create-web-ari-in-src.sh: Update for git.
This commit is contained in:
Tom Tromey 2013-09-17 09:19:25 -06:00 committed by Tom Tromey
parent 279d4c1199
commit c8f8fedd3c
1 changed files with 5 additions and 0 deletions

View File

@ -55,6 +55,11 @@ if [ -z "${webdir}" ] ; then
# Use 'branch' subdir name if Tag contains branch
if [ -f "${srcdir}/gdb/CVS/Tag" ] ; then
tagname=`cat "${srcdir}/gdb/CVS/Tag"`
elif [ -d "${srcdir}/.git" ] ; then
tagname=`cd ${srcdir} && git rev-parse --abbrev-ref HEAD`
if test "$tagname" = "master"; then
tagname=trunk
fi
else
tagname=trunk
fi