Skip to content

Commit

Permalink
Fix wrongly-quoted string.
Browse files Browse the repository at this point in the history
Also make the option long-form.

Fixes: 0a1e8f2
  • Loading branch information
behrmann committed Sep 29, 2024
1 parent 0a1e8f2 commit b7beda5
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", "-u", "manifest", "-"],
["diff", "--unified", manifest, "-"],
input=new,
check=False,
sandbox=config.sandbox(binary="diff", options=["--bind", manifest, manifest]),
Expand Down

0 comments on commit b7beda5

Please sign in to comment.