Doxygen: 'v' char in version tag is no longer needed.
This commit is contained in:
parent
bf962f86b7
commit
261b74b77d
|
@ -78,13 +78,13 @@ for i in `seq 0 $((n-1))`; do
|
||||||
case ${type[$i]} in
|
case ${type[$i]} in
|
||||||
Mercurial|Repository::Mercurial)
|
Mercurial|Repository::Mercurial)
|
||||||
LAST_TAG=`hg tags --color never --noninteractive --quiet -R ${root_url[i]} 2>/dev/null | head -n2 | grep -v '^tip$' \
|
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)
|
Git|Repository::Git)
|
||||||
cd ${root_url[$i]}
|
cd ${root_url[$i]}
|
||||||
[ $? != 0 ] && echo "cd ${root_url[$i]} failed" && continue
|
[ $? != 0 ] && echo "cd ${root_url[$i]} failed" && continue
|
||||||
LAST_TAG=`git tag | tail -n1 \
|
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
|
cd $TMP_PATH
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue