Code

git-cvsimport.perl: Print "UNKNOWN LINE..." on stderr, not stdout.
[git.git] / run-command.c
index 44100a749b09439121073e32e7a3143b54185d31..7068ec7e6d74af0cec233259b4b6e41a61ed5123 100644 (file)
@@ -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)