fix incorrect handling of -c|--conffile
this option actually only has an impact when used for `lb config`; it thus was incorrectly accepted and captured by Arguments() and the documentation was wrong. going back through git history, this has been incorrect since the v0.99 days. also, reorganised the list alphabetically (no-color was inserted in the wrong place). Gbp-Dch: Short
This commit is contained in:
parent
e4134e1583
commit
6b734df9f3
|
@ -13,7 +13,7 @@ Arguments ()
|
|||
{
|
||||
local ARGUMENTS
|
||||
local ERR=0
|
||||
ARGUMENTS="$(getopt --longoptions breakpoints,color,no-color,conffile:,debug,force,help,quiet,usage,verbose,version --name=${PROGRAM} --options c:huv --shell sh -- "${@}")" || ERR=$?
|
||||
ARGUMENTS="$(getopt --longoptions breakpoints,color,debug,force,help,no-color,quiet,usage,verbose,version --name=${PROGRAM} --options huv --shell sh -- "${@}")" || ERR=$?
|
||||
|
||||
if [ $ERR -eq 1 ]; then
|
||||
Echo_error "invalid arguments"
|
||||
|
@ -47,11 +47,6 @@ Arguments ()
|
|||
shift
|
||||
;;
|
||||
|
||||
-c|--conffile)
|
||||
_CONFFILE="${2}"
|
||||
shift 2
|
||||
;;
|
||||
|
||||
--debug)
|
||||
_DEBUG="true"
|
||||
shift
|
||||
|
|
|
@ -33,8 +33,6 @@ The following command line options are supported by most live\-build programs. S
|
|||
run with breakpoints.
|
||||
.IP "\fB\-\-color\fR" 4
|
||||
enable color use in messages.
|
||||
.IP "\fB\-\-conffile\fR" 4
|
||||
use custom configuration file.
|
||||
.IP "\fB\-\-debug\fR" 4
|
||||
show debug information.
|
||||
.IP "\fB\-\-force\fR" 4
|
||||
|
|
Loading…
Reference in New Issue