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:
Kiel Christofferson 2013-07-01 18:47:49 -04:00 committed by Daniel Baumann
parent 3c69e6b56c
commit c9a09a282c
1 changed files with 4 additions and 1 deletions

View File

@ -19,7 +19,10 @@ HELP=""
USAGE="${PROGRAM} [--force]"
_PASS="${1:-binary}"
shift
if [ -n "${1}" ]
then
shift
fi
Arguments "${@}"