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"