Skip to content

Commit

Permalink
Merge e9c2a40 into 5058536
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm committed Feb 7, 2019
2 parents 5058536 + e9c2a40 commit 962e3e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CosyComposer.php
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ public function run()
if (!$result) {
$result = [];
}
$this->log('Found ' . count($result) . ' security advisories for packges installed.');
$this->log('Found ' . count($result) . ' security advisories for packages installed');
if (count($result)) {
$alerts = $result;
}
Expand Down Expand Up @@ -1113,7 +1113,7 @@ protected function doComposerInstall()
if ($code = $this->execCommand('COMPOSER_DISCARD_CHANGES=true COMPOSER_ALLOW_SUPERUSER=1 composer install --no-ansi -n --no-scripts', false, 1200)) {
// Other status code than 0.
$this->log($this->getLastStdOut(), Message::COMMAND);
$this->log($this->getLastStdErr(), Message::COMMAND);
$this->log($this->getLastStdErr());
throw new ComposerInstallException('Composer install failed with exit code ' . $code);
}

Expand Down

0 comments on commit 962e3e3

Please sign in to comment.