mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Fix the error message not being outputed
This commit is contained in:
parent
2d90859cab
commit
dc1f2fbb4c
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ static int builtin_jobs(parser_t &parser, io_streams_t &streams, wchar_t **argv)
|
|||
/*
|
||||
Do not babble if not interactive
|
||||
*/
|
||||
if (streams.out_is_redirected)
|
||||
if (!streams.out_is_redirected)
|
||||
{
|
||||
streams.out.append_format(
|
||||
_(L"%ls: There are no jobs\n"),
|
||||
|
|
Loading…
Reference in a new issue