From 601b29a9d1f4e2019cfa00ec1ba9e8b1960db4fb Mon Sep 17 00:00:00 2001 From: Dayle Rees Date: Fri, 2 Mar 2012 11:40:16 +0000 Subject: [PATCH] added bundle fetching notification for bundle:install Signed-off-by: Dayle Rees --- laravel/cli/tasks/bundle/bundler.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/laravel/cli/tasks/bundle/bundler.php b/laravel/cli/tasks/bundle/bundler.php index 0df18621..049be8e6 100644 --- a/laravel/cli/tasks/bundle/bundler.php +++ b/laravel/cli/tasks/bundle/bundler.php @@ -53,9 +53,10 @@ public function install($bundles) // hosting party and installing it into the application. $path = path('bundle').$this->path($bundle); + echo "Fetching [{$bundle['name']}]..."; $this->download($bundle, $path); - echo "Bundle [{$bundle['name']}] installed!".PHP_EOL; + echo "done! Bundle installed.".PHP_EOL; } } @@ -200,4 +201,4 @@ protected function path($bundle) return array_get($bundle, 'path', $bundle['name']); } -} \ No newline at end of file +}