From 752554fceb187ee9f6542a279dbe3b9228f11dbe Mon Sep 17 00:00:00 2001 From: Hennadii Chernyshchyk Date: Wed, 28 Sep 2022 20:48:45 +0300 Subject: Fix output logic when only stdout or stdin is ignored --- lua/tasks/runner.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lua/tasks') diff --git a/lua/tasks/runner.lua b/lua/tasks/runner.lua index 6a4bf5c..bcd0bfa 100644 --- a/lua/tasks/runner.lua +++ b/lua/tasks/runner.lua @@ -134,7 +134,7 @@ function runner.chain_commands(task_name, commands, module_config, addition_args return end - local quickfix_output = not command.ignore_stdout and not command.ignore_stderr + local quickfix_output = not command.ignore_stdout or not command.ignore_stderr local job = Job:new({ command = command.cmd, args = args, -- cgit v1.2.3