Fix name of book repo for tag version greater than 9
This commit is contained in:
parent
6f74ca146f
commit
7e9e66faa4
1 changed files with 5 additions and 3 deletions
8
jhalfs
8
jhalfs
|
@ -227,9 +227,11 @@ case $BRANCH_ID in
|
||||||
lfs )
|
lfs )
|
||||||
LFSVRS=${BRANCH_ID}
|
LFSVRS=${BRANCH_ID}
|
||||||
TREE=tags/${BRANCH_ID}
|
TREE=tags/${BRANCH_ID}
|
||||||
if (( ${BRANCH_ID:0:1} < 7 )) ; then
|
case ${BRANCH_ID:0:2} in
|
||||||
TREE=${TREE}/BOOK
|
10) ;;
|
||||||
fi
|
[789]*) ;;
|
||||||
|
*) TREE=${TREE}/BOOK ;;
|
||||||
|
esac
|
||||||
;;
|
;;
|
||||||
hlfs )
|
hlfs )
|
||||||
LFSVRS=${BRANCH_ID}
|
LFSVRS=${BRANCH_ID}
|
||||||
|
|
Reference in a new issue