mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
Corrected job_type for external command in debug log
This commit is contained in:
parent
384879704a
commit
4dfb334db8
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue