fixed: throw exception
This commit is contained in:
parent
92f3e62abb
commit
68d4f38e31
|
@ -25,6 +25,12 @@ abstract class BaseCompiler implements Responsable
|
||||||
}
|
}
|
||||||
|
|
||||||
exec($this->command($document), $output, $returnVar);
|
exec($this->command($document), $output, $returnVar);
|
||||||
|
|
||||||
|
if (0 !== $returnVar) {
|
||||||
|
Log::error('Compilation failed', ['body' => $contents, 'output' => $output, 'dir' => $this->file->getPath(), 'command' => $this->command($document)]);
|
||||||
|
throw (new CompilerException('Compilation failed.'))->setOutput($output);
|
||||||
|
}
|
||||||
|
|
||||||
$this->refreshFile();
|
$this->refreshFile();
|
||||||
|
|
||||||
if (!$this->file->isFile()) {
|
if (!$this->file->isFile()) {
|
||||||
|
|
Loading…
Reference in New Issue