Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-07-09 00:05:06 +0400
committerJunio C Hamano <gitster@pobox.com>2008-07-09 00:05:06 +0400
commit30161e73d17f309f9a7566459035b06ec748be7d (patch)
tree1f7f9ca042c105d0e61106bf6ca238fddb1d2c28
parentc636d0e2bcffdbd55c096944561d9ac470da600e (diff)
parent8852f5d704edc20896a84ca9107978c478a2941b (diff)
Merge branch 'qq/maint' into maint
* qq/maint: run_command(): respect GIT_TRACE
-rw-r--r--run-command.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/run-command.c b/run-command.c
index 44100a749b..7068ec7e6d 100644
--- a/run-command.c
+++ b/run-command.c
@@ -65,6 +65,8 @@ int start_command(struct child_process *cmd)
cmd->err = fderr[0];
}
+ trace_argv_printf(cmd->argv, "trace: run_command:");
+
cmd->pid = fork();
if (cmd->pid < 0) {
if (need_in)