Skip to content

Commit

Permalink
Make diff debug output in have_cache universal
Browse files Browse the repository at this point in the history
  • Loading branch information
behrmann authored and DaanDeMeyer committed Sep 29, 2024
1 parent b5791e2 commit 0a1e8f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mkosi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]),
Expand Down

0 comments on commit 0a1e8f2

Please sign in to comment.