From 5ff30ff1d081d3db8873a8f6e3684398c794c2cc Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Mon, 27 Mar 2006 20:34:26 +0000 Subject: [PATCH] Moved a switch to their alphabetical place. --- master.sh | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/master.sh b/master.sh index efaa950..239f2d5 100755 --- a/master.sh +++ b/master.sh @@ -332,6 +332,17 @@ while test $# -gt 0 ; do esac ;; + --boot-config ) + test $# = 1 && eval "$exit_missing_arg" + shift + if [ -f $1 ] ; then + BOOT_CONFIG=$1 + else + echo -e "\nFile $1 not found. Verify your command line.\n" + exit 1 + fi + ;; + --method ) test $# = 1 && eval "$exit_missing_arg" shift @@ -346,17 +357,6 @@ while test $# -gt 0 ; do esac ;; - --boot-config ) - test $# = 1 && eval "$exit_missing_arg" - shift - if [ -f $1 ] ; then - BOOT_CONFIG=$1 - else - echo -e "\nFile $1 not found. Verify your command line.\n" - exit 1 - fi - ;; - # HLFS options --model ) test $# = 1 && eval "$exit_missing_arg"