1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-17 15:01:40 +02:00

36460: Discard benign error when no one is reading from pipe

This commit is contained in:
Peter Stephenson 2015-09-10 09:20:38 +01:00
parent 45e67c3552
commit ca9fdda408
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2015-09-10 Peter Stephenson <p.stephenson@samsung.com>
* 36460: Test/E01options.ztst: Discard benign error on failure
to write to pipe with no one reading.
2015-09-08 Oliver Kiddle <opk@zsh.org>
36422: Src/compat.c: add missing unmeta()

View file

@ -995,7 +995,7 @@
print this is bar >bar
fn() {
local NULLCMD=cat READNULLCMD=cat
echo hello | >foo
{ echo hello | >foo } 2>/dev/null
cat foo
<bar
}