Merge pull request #1165 from JoostK/develop

Problem with manual running of Artisan tasks
This commit is contained in:
Dayle Rees
2012-09-10 03:37:24 -07:00

View File

@@ -125,7 +125,7 @@ class Command {
// the requested method may be executed.
if (file_exists($path = Bundle::path($bundle).'tasks/'.$task.EXT))
{
require $path;
require_once $path;
$task = static::format($bundle, $task);