Browse Source

fix bundle publishing problem.

Taylor Otwell 13 years ago
parent
commit
6b1b0ee5e1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/cli/tasks/bundle/bundler.php

+ 1 - 1
laravel/cli/tasks/bundle/bundler.php

@@ -53,7 +53,7 @@ class Bundler extends Task {
 
 		foreach ($bundles as $bundle)
 		{
-			$publisher->publish($bundle['name']);
+			$publisher->publish($bundle);
 		}
 	}