Commit 62130338 authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit packed 3.64.21

parent 687b0032
......@@ -34,7 +34,7 @@ SHAREDIR="$PROGDIR"
# will replaced with /etc/eepm during install
CONFIGDIR="$PROGDIR/../etc"
export EPMVERSION="3.64.20"
export EPMVERSION="3.64.21"
# package, single (file), pipe, git
EPMMODE="package"
......@@ -16735,11 +16735,11 @@ fi
__eget_parse_options()
{
local skipopt=0
local argument
local argvalue
while [ -n "$1" ] ; do
argument="$(echo $1 | cut -d= -f1)"
argvalue="$(echo $1 | cut -s -d= -f2)"
argument="$(echo "$1" | cut -d= -f1)"
argvalue="$(echo "$1" | cut -s -d= -f2)"
case "$argument" in
-h|--help)
eget_help
......@@ -16893,16 +16893,16 @@ while [ -n "$1" ] ; do
fatal "Unknown option '$1', check eget --help."
;;
*)
return $skipopt
return $#
;;
esac
shift
skipopt=$(($skipopt+1))
done
return $#
}
__eget_parse_options "$@"
shift $?
shift $(($#-$?))
__eget_parse_options $EGET_OPTIONS
#############################3
......
......@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install
CONFIGDIR=$PROGDIR/../etc
EPMVERSION="3.64.20"
EPMVERSION="3.64.21"
# package, single (file), pipe, git
EPMMODE="package"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment