diff options
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index f0938d1e..362e4df7 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -200,7 +200,7 @@ update_pkg_sets() { MISSES="" # convert binary packages into source packages for i in $(cat $TMPFILE) ; do - chdist --data-dir=$CHPATH apt-cache $DISTNAME show $i >> ${TMPFILE2} || MISSES="$i $MISSES" + chdist --data-dir=$CHPATH apt-cache $DISTNAME show $i >> ${TMPFILE2} 2>/dev/null || MISSES="$i $MISSES" done echo "The following unknown packages have been ignored: $MISSES" mv ${TMPFILE2} $TMPFILE |