Commit e774fba9 authored by Danil Mikhailov's avatar Danil Mikhailov

fix 'epm install' apt-dpkg

parent 613be91b
...@@ -23,7 +23,7 @@ epm_install_names() ...@@ -23,7 +23,7 @@ epm_install_names()
{ {
[ -n "$1" ] || return [ -n "$1" ] || return
case $PMTYPE in case $PMTYPE in
apt-rpm) apt-rpm|apt-dpkg)
docmd $SUDO apt-get install $@ docmd $SUDO apt-get install $@
return ;; return ;;
yum-rpm) yum-rpm)
...@@ -45,7 +45,7 @@ epm_ni_install_names() ...@@ -45,7 +45,7 @@ epm_ni_install_names()
{ {
[ -z "$1" ] && return [ -z "$1" ] && return
case $PMTYPE in case $PMTYPE in
apt-rpm) apt-rpm|apt-dpkg)
docmd $SUDO apt-get -y --force-yes install $@ docmd $SUDO apt-get -y --force-yes install $@
return ;; return ;;
yum-rpm) yum-rpm)
......
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