From a952bf44fbeb6b9ea10ece37371338e9c0fc0e55 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Mon, 20 Jun 2022 21:10:13 +0200 Subject: [PATCH] mkosi/manifest: allow errors from rpm/dpkg --- mkosi/manifest.py | 2 -- 1 file changed, 2 deletions(-) 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, ) -- 2.47.2