Browse Source

dont automatically publish bundle assets.

Taylor Otwell 13 years ago
parent
commit
7052c33c37
1 changed files with 0 additions and 4 deletions
  1. 0 4
      laravel/cli/tasks/bundle/bundler.php

+ 0 - 4
laravel/cli/tasks/bundle/bundler.php

@@ -14,8 +14,6 @@ class Bundler extends Task {
 	 */
 	public function install($bundles)
 	{
-		$publisher = IoC::resolve('bundle.publisher');
-
 		foreach ($this->get($bundles) as $bundle)
 		{
 			if (is_dir(BUNDLE_PATH.$bundle['name']))
@@ -35,8 +33,6 @@ class Bundler extends Task {
 			$provider = "bundle.provider: {$bundle['provider']}";
 
 			IoC::resolve($provider)->install($bundle);
-
-			$publisher->publish($bundle['name']);
 		}
 	}