Skip to content

Commit

Permalink
Merge pull request #31 from danielbachhuber/remove-composer-outdated
Browse files Browse the repository at this point in the history
Remove unnecessary call to `composer outdated`
  • Loading branch information
danielbachhuber authored Aug 8, 2019
2 parents 9314345 + 1019223 commit 1a025d5
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/Runner.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,6 @@ public function start( $target_dir, $opts ) {
// Perform an initial install to sanity check the package.
$this->runComposerInstall();

$cmd = 'composer outdated';
Logger::info( $cmd );
passthru( $cmd, $return_code );
if ( 0 !== $return_code ) {
Logger::error( 'Failed to run composer outdated.' );
}

// Run composer update, but capture output for the commit message if needed.
$update_message = $this->runComposerUpdate();

Expand Down

0 comments on commit 1a025d5

Please sign in to comment.