Browse Source

added bundle fetching notification for bundle:install

Signed-off-by: Dayle Rees <thepunkfan@gmail.com>
Dayle Rees 12 years ago
parent
commit
601b29a9d1
1 changed files with 3 additions and 2 deletions
  1. 3 2
      laravel/cli/tasks/bundle/bundler.php

+ 3 - 2
laravel/cli/tasks/bundle/bundler.php

@@ -53,9 +53,10 @@ class Bundler extends Task {
 			// 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 @@ class Bundler extends Task {
 		return array_get($bundle, 'path', $bundle['name']);
 	}
 
-}
+}