Commit d01ddb73 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm: don't cry about error

parent a7faa8db
...@@ -187,4 +187,5 @@ if [ -z "$epm_cmd" ] ; then ...@@ -187,4 +187,5 @@ if [ -z "$epm_cmd" ] ; then
fi fi
load_helper epm-$epm_cmd load_helper epm-$epm_cmd
epm_$epm_cmd || fatal "" epm_$epm_cmd
# return last error code
...@@ -83,6 +83,7 @@ epm_install_files() ...@@ -83,6 +83,7 @@ epm_install_files()
return ;; return ;;
FreeBSD) FreeBSD)
docmd $SUDO pkg_add $@ docmd $SUDO pkg_add $@
return ;;
Ubuntu|Debian|Mint) Ubuntu|Debian|Mint)
docmd $SUDO dpkg -i $@ docmd $SUDO dpkg -i $@
docmd $SUDO apt-get -f install docmd $SUDO apt-get -f install
......
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