summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2020-11-04 19:28:31 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-11-04 22:05:28 (GMT)
commit4c6f781f9c7ee7029c3f2fd20ddd76ce8b476bca (patch)
treebb2b99abdf85a596bc7cbc7695e3fbf9e8984f38 /builtin
parent898f80736c75878acc02dc55672317fcc0e0a5a6 (diff)
downloadgit-4c6f781f9c7ee7029c3f2fd20ddd76ce8b476bca.zip
git-4c6f781f9c7ee7029c3f2fd20ddd76ce8b476bca.tar.gz
git-4c6f781f9c7ee7029c3f2fd20ddd76ce8b476bca.tar.bz2
format-patch: refactor output selection
The --stdout and --output-directory options are mutually exclusive, but it's hard to tell from reading the code. We have three separate conditionals that check for use_stdout, and it's only after we've set up the output_directory fully that we check whether the user also specified --stdout. Instead, let's check the exclusion explicitly first, then have a single conditional that handles stdout versus an output directory. This is slightly easier to follow now, and also will keep things sane when we add another output mode in a future patch. We'll add a few tests as well, covering the mutual exclusion and the fact that we are not confused by a configured output directory. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/log.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/builtin/log.c b/builtin/log.c
index 0a7ed4b..8114462 100644
--- a/builtin/log.c
+++ b/builtin/log.c
@@ -1942,20 +1942,20 @@ int cmd_format_patch(int argc, const char **argv, const char *prefix)
if (rev.show_notes)
load_display_notes(&rev.notes_opt);
- if (!output_directory && !use_stdout)
- output_directory = config_output_directory;
+ if (use_stdout + !!output_directory > 1)
+ die(_("--stdout and --output-directory are mutually exclusive"));
- if (!use_stdout)
- output_directory = set_outdir(prefix, output_directory);
- else
+ if (use_stdout) {
setup_pager();
-
- if (output_directory) {
+ } else {
int saved;
+
+ if (!output_directory)
+ output_directory = config_output_directory;
+ output_directory = set_outdir(prefix, output_directory);
+
if (rev.diffopt.use_color != GIT_COLOR_ALWAYS)
rev.diffopt.use_color = GIT_COLOR_NEVER;
- if (use_stdout)
- die(_("standard output, or directory, which one?"));
/*
* We consider <outdir> as 'outside of gitdir', therefore avoid
* applying adjust_shared_perm in s-c-l-d.