From 62ee825071f371debd311712b5a68ee07e6dce34 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 2 Feb 2012 15:37:36 -0600 Subject: [PATCH] added message for zip install. --- laravel/cli/tasks/bundle/providers/github.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/laravel/cli/tasks/bundle/providers/github.php b/laravel/cli/tasks/bundle/providers/github.php index c17602f9..83d08205 100644 --- a/laravel/cli/tasks/bundle/providers/github.php +++ b/laravel/cli/tasks/bundle/providers/github.php @@ -28,6 +28,8 @@ protected function zipball($bundle) $url = "http://nodeload.github.com/{$bundle['location']}/zipball/master"; parent::zipball($bundle, $url, true); + + echo "Bundle [{$bundle['name']} has been installed!".PHP_EOL; } /**