mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 13:23:09 +00:00
51527612d3
Fixes #1728.
9 lines
221 B
Fish
9 lines
221 B
Fish
# vim: set filetype=fish:
|
|
|
|
# Issue #1728
|
|
# Bad file redirection on a block causes `status --is-block` to return 0 forever.
|
|
begin; end >/ # / is a directory, it can't be opened for writing
|
|
status -b
|
|
and echo 'block'
|
|
|
|
true
|