Only call shift if args are not empty.
Some shells (like dash) will exit fatally when the shift builtin is called beyond the last option.
This commit is contained in:
parent
3c69e6b56c
commit
c9a09a282c
|
@ -19,7 +19,10 @@ HELP=""
|
|||
USAGE="${PROGRAM} [--force]"
|
||||
|
||||
_PASS="${1:-binary}"
|
||||
shift
|
||||
if [ -n "${1}" ]
|
||||
then
|
||||
shift
|
||||
fi
|
||||
|
||||
Arguments "${@}"
|
||||
|
||||
|
|
Loading…
Reference in New Issue