From c506b995233b1dd6e6eb24d1e50c263d235601c0 Mon Sep 17 00:00:00 2001 From: Jeremy Huntwork Date: Thu, 1 Dec 2005 00:54:52 +0000 Subject: [PATCH] Update jhalfs to drop testing and use the released 6.1.1 --- jhalfs | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/jhalfs b/jhalfs index 9bd2fba..7f64cd5 100755 --- a/jhalfs +++ b/jhalfs @@ -176,11 +176,14 @@ get_book() { extract_commands fi else - if [ $LFSVRS = development ] ; then - svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 - else - svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 - fi + case $LFSVRS in + development) + svn co $SVN/LFS/trunk/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;; + alphabetical) + svn co $SVN/LFS/branches/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;; + 6.1.1) + svn co $SVN/LFS/tags/$LFSVRS/BOOK lfs-$LFSVRS >>$LOGDIR/$LOG 2>&1 ;; + esac echo -ne "done\n" # Set the canonical book version cd $JHALFSDIR @@ -974,7 +977,7 @@ while test $# -gt 0 ; do dev* | SVN | trunk ) LFSVRS=development ;; - testing | 6.1.1 ) + 6.1.1 ) LFSVRS=6.1.1 ;;