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:
parent
279d4c1199
commit
c8f8fedd3c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user