Commit 4b0ce3ec authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit packed 3.64.1

parent 1c38bd04
...@@ -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.0" EPMVERSION="3.64.1"
# package, single (file), pipe, git # package, single (file), pipe, git
EPMMODE="package" EPMMODE="package"
...@@ -357,9 +357,10 @@ echog() ...@@ -357,9 +357,10 @@ echog()
{ {
if [ "$1" = "-n" ] ; then if [ "$1" = "-n" ] ; then
shift shift
eval_gettext "$*" [ -n "$1" ] && eval_gettext "$*"
else else
eval_gettext "$*"; echo [ -n "$1" ] && eval_gettext "$*"
echo
fi fi
} }
...@@ -1089,10 +1090,23 @@ if [ -d "$TEXTDOMAINDIR" ] && is_command gettext.sh ; then ...@@ -1089,10 +1090,23 @@ if [ -d "$TEXTDOMAINDIR" ] && is_command gettext.sh ; then
else else
eval_gettext() eval_gettext()
{ {
echo -n $@ eval "echo -n \"$@\""
} }
fi fi
set_backend()
{
case $arg in
*:*)
PMTYPE=$(echo "$arg" | cut -d: -f1)
names=$(echo "$arg" | cut -d: -f2)
;;
*)
PMTYPE=$($DISTRVENDOR -g)
names="$(echo $pkg_names | tr ' ' '\n' | grep -v ':' | filter_out_installed_packages)"
esac
}
# File bin/serv-cat: # File bin/serv-cat:
......
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