Commit 9dbc15a3 authored by Paul Boco's avatar Paul Boco

Change argument to $publisher->publish from $bundle to $bundle['name'].

parent 9bcbe6a3
......@@ -51,7 +51,7 @@ class Bundler extends Task {
IoC::resolve($provider)->install($bundle);
$publisher->publish($bundle);
$publisher->publish($bundle['name']);
}
}
......@@ -72,7 +72,7 @@ class Bundler extends Task {
foreach ($bundles as $bundle)
{
$publisher->publish($bundle);
$publisher->publish($bundle['name']);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment