From 5aa281942f59c424fe9ae0c88565589386158519 Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Sun, 13 Aug 2017 15:24:18 -0700 Subject: [PATCH] Revert "Corrected job_type for external command in debug log" This reverts commit 4dfb334db813c35950b11a0201953d32b4b4a858. It was meant for the major branch. --- src/exec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exec.cpp b/src/exec.cpp index 72e615c30..931277c3d 100644 --- a/src/exec.cpp +++ b/src/exec.cpp @@ -1113,7 +1113,7 @@ void exec_job(parser_t &parser, job_t *j) { } else #endif { - if (!do_fork(false, "external command", [&] { + if (!do_fork(false, "internal builtin", [&] { safe_launch_process(p, actual_cmd, argv, envv); })) { break;