Commit 54b4fbb2 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-install: return 0 if all packages are filtered out

parent 7ec54786
......@@ -570,9 +570,9 @@ epm_install()
# can be empty only after skip installed
if [ -z "$files$names" ] ; then
# TODO: assert $skip_installed
[ -n "$verbose" ] && info "Skip empty install list"
[ -n "$verbose" ] && info "Skip empty install list (filtered out)"
# FIXME: see to_remove below
return 22
return 0
fi
if [ -z "$files" ] && [ -z "$direct" ] ; then
......
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