feat: return error code for failed CLI-based installs (#3452)

This commit is contained in:
Martin Hasoň 2022-06-20 04:50:38 +02:00 committed by GitHub
parent 5e81592e18
commit 5dedec12f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,6 +73,8 @@ class InstallCommand extends AbstractCommand
$this->info('DONE.');
} else {
$this->showProblems($problems);
return 1;
}
}