diff --git a/app/Shell/Shell.php b/app/Shell/Shell.php index 2dbb23c..e03e970 100644 --- a/app/Shell/Shell.php +++ b/app/Shell/Shell.php @@ -27,9 +27,10 @@ public function exec(string $command, array $parameters = [], bool $quiet = fals if ($type === Process::ERR) { error('Something went wrong.'); + note(' ERR ' . $this->formatMessage($buffer)); + } else { + note(' OUT ' . $this->formatMessage($buffer)); } - - note($this->formatMessage($buffer)); }, $parameters); return $process;