From: Kunal Mehta Date: Sat, 17 Jan 2015 01:49:49 +0000 (-0800) Subject: update.php: Run checkComposerLockUpToDate.php X-Git-Tag: 1.31.0-rc.0~12619 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=c9c76be9ed7646683c6a265caec37fd0ed661f17;p=lhc%2Fweb%2Fwiklou.git update.php: Run checkComposerLockUpToDate.php As suggested on wikitech-l Change-Id: If9cde3aafb136c7194e74e6f7f0bae0b49e36465 --- diff --git a/maintenance/update.php b/maintenance/update.php index d1d17cf927..8ab1ddb9b0 100755 --- a/maintenance/update.php +++ b/maintenance/update.php @@ -131,6 +131,10 @@ class UpdateMediaWiki extends Maintenance { wfCountdown( 5 ); } + // Check external dependencies are up to date + $composerLockUpToDate = $this->runChild( 'CheckComposerLockUpToDate' ); + $composerLockUpToDate->execute(); + # Attempt to connect to the database as a privileged user # This will vomit up an error if there are permissions problems $db = wfGetDB( DB_MASTER );