From: Zbigniew Jędrzejewski-Szmek Date: Mon, 20 Jun 2022 19:10:13 +0000 (+0200) Subject: mkosi/manifest: allow errors from rpm/dpkg X-Git-Tag: v13~5^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1004%2Fhead;p=thirdparty%2Fmkosi.git mkosi/manifest: allow errors from rpm/dpkg --- diff --git a/mkosi/manifest.py b/mkosi/manifest.py index ab0781557..07e07ae21 100644 --- a/mkosi/manifest.py +++ b/mkosi/manifest.py @@ -88,7 +88,6 @@ class Manifest: ["rpm", f"--root={root}", "-qa", "--qf", r"%{NEVRA}\t%{SOURCERPM}\t%{NAME}\t%{ARCH}\t%{SIZE}\t%{INSTALLTIME}\n"], stdout=PIPE, - stderr=DEVNULL, text=True, ) @@ -140,7 +139,6 @@ class Manifest: ["dpkg-query", f"--admindir={root}/var/lib/dpkg", "--show", "--showformat", r'${Package}\t${source:Package}\t${Version}\t${Architecture}\t${Installed-Size}\t${db-fsys:Last-Modified}\n'], stdout=PIPE, - stderr=DEVNULL, text=True, )