Commit dc84c4d2 authored by Boris Yumankulov's avatar Boris Yumankulov Committed by Vitaly Lipatov

epm play --list: dont show packages from repo (eterbug #17527)

parent 8b459c43
......@@ -109,7 +109,11 @@ __filter_by_installed_packages()
# get intersect between full package list and available packages table
epm --short packages | LC_ALL=C sort -u >$pkglist
LC_ALL=C join -11 -21 $tapt $pkglist | uniq
LC_ALL=C join -11 -21 $tapt $pkglist | uniq | while read -r package description ; do
if epm status --repacked "$package" </dev/null ; then
echo "$package $description"
fi
done
rm -f $pkglist
# rpm on Fedora/CentOS no more print missed packages to stderr
......
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