diff mbox series

[2/2] combine-diff: abort if --output is given

Message ID 493bbdb3-be73-9aa2-e3f6-82508d15ef88@web.de (mailing list archive)
State New, archived
Headers show
Series [1/2] combine-diff: abort if --ignore-matching-lines is given | expand

Commit Message

René Scharfe June 18, 2022, 11:12 a.m. UTC
The code for combined diffs currently only writes to stdout.  Abort and
report that fact instead of silently ignoring the --output option.  The
(empty) output file has already been created at that point, though.

Reported-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: René Scharfe <l.s.r@web.de>
---
 combine-diff.c | 3 +++
 1 file changed, 3 insertions(+)

--
2.36.1
diff mbox series

Patch

diff --git a/combine-diff.c b/combine-diff.c
index 11df1d7f39..b0ece95480 100644
--- a/combine-diff.c
+++ b/combine-diff.c
@@ -1501,6 +1501,9 @@  void diff_tree_combined(const struct object_id *oid,
 	if (opt->ignore_regex_nr)
 		die("combined diff and '%s' cannot be used together",
 		    "--ignore-matching-lines");
+	if (opt->close_file)
+		die("combined diff and '%s' cannot be used together",
+		    "--output");

 	/* nothing to do, if no parents */
 	if (!num_parent)