Moved a switch to their alphabetical place.
This commit is contained in:
parent
ea29b1fe89
commit
5ff30ff1d0
1 changed files with 11 additions and 11 deletions
22
master.sh
22
master.sh
|
@ -332,6 +332,17 @@ while test $# -gt 0 ; do
|
||||||
esac
|
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 )
|
--method )
|
||||||
test $# = 1 && eval "$exit_missing_arg"
|
test $# = 1 && eval "$exit_missing_arg"
|
||||||
shift
|
shift
|
||||||
|
@ -346,17 +357,6 @@ while test $# -gt 0 ; do
|
||||||
esac
|
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
|
# HLFS options
|
||||||
--model )
|
--model )
|
||||||
test $# = 1 && eval "$exit_missing_arg"
|
test $# = 1 && eval "$exit_missing_arg"
|
||||||
|
|
Reference in a new issue