Commit 62130338 authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit packed 3.64.21

parent 687b0032
...@@ -34,7 +34,7 @@ SHAREDIR="$PROGDIR" ...@@ -34,7 +34,7 @@ SHAREDIR="$PROGDIR"
# will replaced with /etc/eepm during install # will replaced with /etc/eepm during install
CONFIGDIR="$PROGDIR/../etc" CONFIGDIR="$PROGDIR/../etc"
export EPMVERSION="3.64.20" export EPMVERSION="3.64.21"
# package, single (file), pipe, git # package, single (file), pipe, git
EPMMODE="package" EPMMODE="package"
...@@ -16735,11 +16735,11 @@ fi ...@@ -16735,11 +16735,11 @@ fi
__eget_parse_options() __eget_parse_options()
{ {
local skipopt=0 local argument
local argvalue
while [ -n "$1" ] ; do while [ -n "$1" ] ; do
argument="$(echo "$1" | cut -d= -f1)"
argument="$(echo $1 | cut -d= -f1)" argvalue="$(echo "$1" | cut -s -d= -f2)"
argvalue="$(echo $1 | cut -s -d= -f2)"
case "$argument" in case "$argument" in
-h|--help) -h|--help)
eget_help eget_help
...@@ -16893,16 +16893,16 @@ while [ -n "$1" ] ; do ...@@ -16893,16 +16893,16 @@ while [ -n "$1" ] ; do
fatal "Unknown option '$1', check eget --help." fatal "Unknown option '$1', check eget --help."
;; ;;
*) *)
return $skipopt return $#
;; ;;
esac esac
shift shift
skipopt=$(($skipopt+1))
done done
return $#
} }
__eget_parse_options "$@" __eget_parse_options "$@"
shift $? shift $(($#-$?))
__eget_parse_options $EGET_OPTIONS __eget_parse_options $EGET_OPTIONS
#############################3 #############################3
......
...@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR ...@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install # will replaced with /etc/eepm during install
CONFIGDIR=$PROGDIR/../etc CONFIGDIR=$PROGDIR/../etc
EPMVERSION="3.64.20" EPMVERSION="3.64.21"
# package, single (file), pipe, git # package, single (file), pipe, git
EPMMODE="package" 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