mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Merge branch 'master' into amal
This commit is contained in:
commit
58374309bc
2 changed files with 15 additions and 1 deletions
14
news/fix_pipeline.rst
Normal file
14
news/fix_pipeline.rst
Normal file
|
@ -0,0 +1,14 @@
|
|||
**Added:** None
|
||||
|
||||
**Changed:** None
|
||||
|
||||
**Deprecated:** None
|
||||
|
||||
**Removed:** None
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* Fixed issue where input was directed to the last process in a pipeline,
|
||||
rather than the first.
|
||||
|
||||
**Security:** None
|
|
@ -100,7 +100,7 @@ else:
|
|||
|
||||
def _set_pgrp(info):
|
||||
try:
|
||||
info['pgrp'] = os.getpgid(info['obj'].pid)
|
||||
info['pgrp'] = os.getpgid(info['pids'][0])
|
||||
except ProcessLookupError:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue