From 1e63755fb588733a97278207c8fac2f7ec1db8a2 Mon Sep 17 00:00:00 2001 From: David Monllao Date: Mon, 18 Mar 2013 16:54:35 +0800 Subject: [PATCH] MDL-38531 behat: Replacing composer install for composer update --- admin/tool/behat/cli/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/tool/behat/cli/init.php b/admin/tool/behat/cli/init.php index 8162b0ef20ed1..191636765f817 100644 --- a/admin/tool/behat/cli/init.php +++ b/admin/tool/behat/cli/init.php @@ -71,7 +71,7 @@ } } - passthru("php composer.phar install --dev", $code); + passthru("php composer.phar update --dev", $code); if ($code != 0) { exit($code); }