diff --git a/LibreNMS/Util/CiHelper.php b/LibreNMS/Util/CiHelper.php index 81c85ac82f..f0722639da 100644 --- a/LibreNMS/Util/CiHelper.php +++ b/LibreNMS/Util/CiHelper.php @@ -394,15 +394,15 @@ class CiHelper if (Process::isTtySupported()) { $proc->setTty(true); - $proc->run(); + $proc->run(); } else { $proc->run(function ($type, $buffer) { echo $buffer; }); } } else { - $proc->run(); - } + $proc->run(); + } $duration = sprintf('%.2fs', microtime(true) - $start); if ($proc->getExitCode() > 0) {