Moved a switch to their alphabetical place.

This commit is contained in:
Manuel Canales Esparcia 2006-03-27 20:34:26 +00:00
parent ea29b1fe89
commit 5ff30ff1d0

View file

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