From: Jörg Behrmann Date: Sun, 29 Sep 2024 11:06:14 +0000 (+0200) Subject: Make diff debug output in have_cache universal X-Git-Tag: v25~257 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a1e8f26d16ac64040da7d03ef4711e706775f3a;p=thirdparty%2Fmkosi.git Make diff debug output in have_cache universal --- diff --git a/mkosi/__init__.py b/mkosi/__init__.py index 42f6aaac3..2fe97cd91 100644 --- a/mkosi/__init__.py +++ b/mkosi/__init__.py @@ -2779,7 +2779,7 @@ def have_cache(config: Config) -> bool: logging.info("Cache manifest mismatch, not reusing cached images") if ARG_DEBUG.get(): run( - ["diff", manifest, "-"], + ["diff", "-u", "manifest", "-"], input=new, check=False, sandbox=config.sandbox(binary="diff", options=["--bind", manifest, manifest]),