Commit 02044821 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-install: print install command ever if args is empty

parent 29dfed53
......@@ -533,7 +533,8 @@ epm_print_install_command()
epm_print_install_names_command()
{
[ -z "$1" ] && return
# check for pkg_files to support print out command without pkg names in args
[ -z "$1" ] && [ -n "$pkg_files" ] && return
case $PMTYPE in
apt-rpm|apt-dpkg)
echo "apt-get -y --force-yes -o APT::Install::VirtualVersion=true -o APT::Install::Virtual=true $APTOPTIONS 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