mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-27 20:25:12 +00:00
Fix sense of test in parse_execution to issue a barrier if an external
command has run
This commit is contained in:
parent
b19f45e15d
commit
195cd130f8
1 changed files with 1 additions and 1 deletions
|
@ -1436,7 +1436,7 @@ parse_execution_result_t parse_execution_context_t::run_1_job(const parse_node_t
|
||||||
exec_job(*this->parser, j);
|
exec_job(*this->parser, j);
|
||||||
|
|
||||||
/* Only external commands require a new fishd barrier */
|
/* Only external commands require a new fishd barrier */
|
||||||
if (!job_contained_external_command)
|
if (job_contained_external_command)
|
||||||
{
|
{
|
||||||
set_proc_had_barrier(false);
|
set_proc_had_barrier(false);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue