Commit fba26a45 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play: count thirdparty packages on deb systems for --list

parent 44d32990
...@@ -166,7 +166,7 @@ __filter_by_installed_packages() ...@@ -166,7 +166,7 @@ __filter_by_installed_packages()
# get intersect between full package list and available packages table # get intersect between full package list and available packages table
LC_ALL=C join -11 -21 $tapt $pkglist | uniq | while read -r package app ; do LC_ALL=C join -11 -21 $tapt $pkglist | uniq | while read -r package app ; do
if epm status --repacked "$package" </dev/null ; then if epm status --repacked "$package" </dev/null || epm status --thirdparty "$package" </dev/null ; then
echo "$package $app" echo "$package $app"
fi fi
done done
......
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