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.
2 parents 1416cfb + 7c0dafd commit 3d46fc7Copy full SHA for 3d46fc7
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