Re: [RFC/PATCH] archive: "--list" does not take further options
From: Jeff King <hidden>
Date: 2023-12-21 08:59:49
On Thu, Dec 21, 2023 at 08:30:36AM +0100, René Scharfe wrote:
quoted
I do not like the remote error behaviour this one adds at all. Do we use a more proper mechanism to propagate a remote error back for other subcommands we can reuse here?Don't we have one? It would affect other unsupported options as well, and this seems to work just fine, e.g.: $ git archive --remote=. --format=foo HEAD remote: fatal: Unknown archive format 'foo' remote: git upload-archive: archiver died with error fatal: sent error to the client: git upload-archive: archiver died with error
Right. The whole idea of upload-archive is to spawn a separate writer process and mux the conversation (including errors) back over the wire. There are a zillion reasons it can die (including bad arguments) and we catch and report them in the muxing process.
quoted
if (list) { + if (argc) { + if (!is_remote) + die(_("extra command line parameter '%s'"), *argv); + else + printf("!ERROR! extra command line parameter '%s'\n", + *argv); + }So just call die() here?
Yes, exactly. -Peff