From 34793c1303206a6e3ee8872cd21f270d471250c0 Mon Sep 17 00:00:00 2001 From: Tobias Munk Date: Thu, 23 May 2013 18:33:48 +0200 Subject: [PATCH] added full display of command --- extensions/composer/yii/composer/InstallHandler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/composer/yii/composer/InstallHandler.php b/extensions/composer/yii/composer/InstallHandler.php index 1171889..0c4eb2b 100644 --- a/extensions/composer/yii/composer/InstallHandler.php +++ b/extensions/composer/yii/composer/InstallHandler.php @@ -90,7 +90,7 @@ class InstallHandler $opts = str_getcsv($rawCommand, ' '); // see http://stackoverflow.com/a/6609509/291573 $request->setParams($opts); list($command, $params) = $request->resolve(); - echo "Running command: {$command}\n"; + echo "Running command: yiic {$rawCommand}\n"; $application->runAction($command, $params); } }