Doxygen: 'v' char in version tag is no longer needed.

This commit is contained in:
Kolan Sh 2012-07-31 12:01:53 +04:00
parent bf962f86b7
commit 261b74b77d
1 changed files with 2 additions and 2 deletions

View File

@ -78,13 +78,13 @@ for i in `seq 0 $((n-1))`; do
case ${type[$i]} in
Mercurial|Repository::Mercurial)
LAST_TAG=`hg tags --color never --noninteractive --quiet -R ${root_url[i]} 2>/dev/null | head -n2 | grep -v '^tip$' \
| grep -E '^v[0-9]+\.[0-9]+\.[0-9]+'`
| grep -E '^v?[0-9]+\.[0-9]+\.[0-9]+'`
;;
Git|Repository::Git)
cd ${root_url[$i]}
[ $? != 0 ] && echo "cd ${root_url[$i]} failed" && continue
LAST_TAG=`git tag | tail -n1 \
| grep -E '^v[0-9]+\.[0-9]+\.[0-9]+'`
| grep -E '^v?[0-9]+\.[0-9]+\.[0-9]+'`
cd $TMP_PATH
;;
esac