From 4dfb334db813c35950b11a0201953d32b4b4a858 Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Sun, 30 Jul 2017 17:34:20 -0500 Subject: [PATCH] Corrected job_type for external command in debug log --- src/exec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exec.cpp b/src/exec.cpp index 931277c3d..72e615c30 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, "internal builtin", [&] { + if (!do_fork(false, "external command", [&] { safe_launch_process(p, actual_cmd, argv, envv); })) { break;