Commit 33e352f7 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-simulate: return 0 if all needed packages are installed

parent d1a59153
......@@ -74,7 +74,7 @@ epm_simulate()
local filenames="$(echo $pkg_filenames | filter_out_installed_packages)"
[ -z "$filenames" ] && echo "All packages are already installed" && return 2
[ -z "$filenames" ] && echo "All packages are already installed" && return 0
_epm_do_simulate $filenames
local RES=$?
......
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