Fix name of book repo for tag version greater than 9

This commit is contained in:
Pierre Labastie 2020-08-16 08:05:57 +00:00
parent 6f74ca146f
commit 7e9e66faa4

8
jhalfs
View file

@ -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}