]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
mkosi/manifest: allow errors from rpm/dpkg 1004/head
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 20 Jun 2022 19:10:13 +0000 (21:10 +0200)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Mon, 20 Jun 2022 19:10:13 +0000 (21:10 +0200)
mkosi/manifest.py

index ab07815578927c428a8fda469b2895c6c3a2a26c..07e07ae2115c034d45df34d33492f5c7c7a0a87c 100644 (file)
@@ -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,
         )