1
0
Fork 0

Soften hard exit after revert of composer file

pull/7928/head
Michael Telgmann 2019-02-07 16:24:40 +01:00 committed by Jordi Boggiano
parent 6599f46c23
commit eee98018f7
1 changed files with 5 additions and 3 deletions

View File

@ -195,7 +195,7 @@ EOT
$status = $install->run(); $status = $install->run();
if ($status !== 0) { if ($status !== 0) {
$this->revertComposerFile(); $this->revertComposerFile(false);
} }
return $status; return $status;
@ -226,7 +226,7 @@ EOT
return; return;
} }
public function revertComposerFile() public function revertComposerFile($hardExit = true)
{ {
$io = $this->getIO(); $io = $this->getIO();
@ -238,6 +238,8 @@ EOT
file_put_contents($this->json->getPath(), $this->composerBackup); file_put_contents($this->json->getPath(), $this->composerBackup);
} }
exit(1); if ($hardExit) {
exit(1);
}
} }
} }