aboutsummaryrefslogtreecommitdiffstats
path: root/install-blfs-tools.sh
diff options
context:
space:
mode:
authorPierre Labastie <pierre@linuxfromscratch.org>2020-10-15 12:39:52 +0000
committerPierre Labastie <pierre@linuxfromscratch.org>2020-10-15 12:39:52 +0000
commit018ab000f3588deb61343b8dc97273e3a69663a5 (patch)
tree0823aa37db390861c7fc6d9c6efd8c7217877969 /install-blfs-tools.sh
parent5562bf14e07235bce3a130a9c6e0bfaf21ccd7df (diff)
Fix downloading blfs books tag versions greater than 9
Diffstat (limited to 'install-blfs-tools.sh')
-rwxr-xr-xinstall-blfs-tools.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/install-blfs-tools.sh b/install-blfs-tools.sh
index a7b3eb35d5..1aba415177 100755
--- a/install-blfs-tools.sh
+++ b/install-blfs-tools.sh
@@ -135,8 +135,8 @@ case $BLFS_BRANCH_ID in
development ) BLFS_TREE=trunk/BOOK ;;
branch-6.* ) BLFS_TREE=branches/${BLFS_BRANCH_ID#branch-}/BOOK ;;
branch-* ) BLFS_TREE=branches/${BLFS_BRANCH_ID#branch-} ;;
-6.2* | 7.* | 8.* ) BLFS_TREE=tags/${BLFS_BRANCH_ID} ;;
- * ) BLFS_TREE=tags/${BLFS_BRANCH_ID}/BOOK ;;
+ [isv]* | 6.3* ) BLFS_TREE=tags/${BLFS_BRANCH_ID}/BOOK ;;
+ * ) BLFS_TREE=tags/${BLFS_BRANCH_ID} ;;
esac
case $LFS_BRANCH_ID in
development ) LFS_TREE=trunk/BOOK ;;