From c9c76be9ed7646683c6a265caec37fd0ed661f17 Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Fri, 16 Jan 2015 17:49:49 -0800 Subject: [PATCH] update.php: Run checkComposerLockUpToDate.php As suggested on wikitech-l Change-Id: If9cde3aafb136c7194e74e6f7f0bae0b49e36465 --- maintenance/update.php | 4 ++++ 1 file changed, 4 insertions(+) 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 ); -- 2.20.1