We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1416cfb commit 7c0dafdCopy full SHA for 7c0dafd
etc/config/command.php
@@ -31,7 +31,10 @@
31
$process->run();
32
$output = $process->getOutput();
33
if (!$process->isSuccessful()) {
34
- $output = $process->getErrorOutput();
+ $failureOutput = $process->getErrorOutput();
35
+ if (!empty($failureOutput)) {
36
+ $output = $failureOutput;
37
+ }
38
}
39
if (empty($output)) {
40
$output = "CLI did not return output.";
0 commit comments