From: Johannes Sixt <j6t@kdbg.org>
To: "Erik Faye-Lund" <kusmabite@gmail.com>
Cc: git@vger.kernel.org, msysgit@googlegroups.com, jrnieder@gmail.com
Subject: Re: [PATCH v2] alias: use run_command api to execute aliases
Date: Thu, 6 Jan 2011 21:27:56 +0100 [thread overview]
Message-ID: <201101062127.56597.j6t@kdbg.org> (raw)
In-Reply-To: <1294343649-6272-1-git-send-email-kusmabite@gmail.com>
On Donnerstag, 6. Januar 2011, Erik Faye-Lund wrote:
> @@ -177,22 +177,22 @@ static int handle_alias(int *argcp, const char
> ***argv) alias_string = alias_lookup(alias_command);
> if (alias_string) {
> if (alias_string[0] == '!') {
> + const char **alias_argv;
> + int argc = *argcp, i;
> +
> commit_pager_choice();
> - if (*argcp > 1) {
> - struct strbuf buf;
> -
> - strbuf_init(&buf, PATH_MAX);
> - strbuf_addstr(&buf, alias_string);
> - sq_quote_argv(&buf, (*argv) + 1, PATH_MAX);
> - free(alias_string);
> - alias_string = buf.buf;
> - }
> - trace_printf("trace: alias to shell cmd: %s => %s\n",
> - alias_command, alias_string + 1);
> - ret = system(alias_string + 1);
> - if (ret >= 0 && WIFEXITED(ret) &&
> - WEXITSTATUS(ret) != 127)
> - exit(WEXITSTATUS(ret));
> +
> + /* build alias_argv */
> + alias_argv = xmalloc(sizeof(char *) * argc + 1);
> + alias_argv[0] = alias_string + 1;
> + for (i = 1; i < argc; ++i)
> + alias_argv[i] = (*argv)[i];
> + alias_argv[argc] = NULL;
> +
> + ret = run_command_v_opt(alias_argv, RUN_USING_SHELL);
> + if (ret >= 0) /* normal exit */
> + exit(ret);
> +
> die("Failed to run '%s' when expanding alias '%s'",
> alias_string + 1, alias_command);
At this point, errno has a meaning. I'd perhaps change this to:
die_errno("While expanding alias '%s': '%s'",
alias_command, alias_string + 1);
-- Hannes
prev parent reply other threads:[~2011-01-06 20:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-06 19:54 [PATCH v2] alias: use run_command api to execute aliases Erik Faye-Lund
2011-01-06 20:05 ` Jonathan Nieder
2011-01-06 20:14 ` Erik Faye-Lund
2011-01-06 20:27 ` Johannes Sixt [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201101062127.56597.j6t@kdbg.org \
--to=j6t@kdbg.org \
--cc=git@vger.kernel.org \
--cc=jrnieder@gmail.com \
--cc=kusmabite@gmail.com \
--cc=msysgit@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).