Re: [PATCH] worktree: add -z option for list subcommand
From: Jean-Noël Avila <hidden>
Date: 2022-02-28 09:47:10
From: Jean-Noël Avila <hidden>
Date: 2022-02-28 09:47:10
Le 25/02/2022 à 16:08, Phillip Wood via GitGitGadget a écrit :
From: Phillip Wood <redacted>@@ -696,6 +702,8 @@ static int list(int ac, const char **av, const char *prefix) usage_with_options(worktree_usage, options); else if (verbose && porcelain) die(_("options '%s' and '%s' cannot be used together"), "--verbose", "--porcelain"); + else if (!line_terminator && !porcelain) + die(_("'-z' requires '--porcelain'")); else { struct worktree **worktrees = get_worktrees(); int path_maxlen = 0, abbrev = DEFAULT_ABBREV, i;
Please better use
die(_("the option '%s' requires '%s'"), "-z", "--porcelain");
In order to make a no-op for translators.
Best regards,
JN