dont automatically publish bundle assets.

This commit is contained in:
Taylor Otwell 2012-01-26 16:04:51 -06:00
parent da7d076f54
commit 7052c33c37
1 changed files with 0 additions and 4 deletions

View File

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