Commit 9b999087 authored by Anton Midyukov's avatar Anton Midyukov

metadep-expander: enable stderr for apt-cache command

This will save time on identify the causes.
parent 9fc8689d
......@@ -10,7 +10,7 @@ metapkgs="$(grep -e @META "$f" | grep -v '^#')"
for metapkg in $metapkgs; do
metapkg=${metapkg%@META}
if ! "$APT_CACHE" show "$metapkg" > /dev/null 2>&1; then
if ! "$APT_CACHE" show "$metapkg" > /dev/null; then
echo "** warning: Metapackage '$metapkg' not available!!!" 1>&2
echo "** warning: '$metapkg' removed from $f" 1>&2
continue
......
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