Browse Source

Fix regression: custom tasks not found

1.0
Marcel Hernandez 9 years ago
parent
commit
384247bcd9
  1. 4
      bin/mage

4
bin/mage

@ -22,11 +22,11 @@ if (file_exists(__DIR__ . '/../vendor/autoload.php')) {
require_once __DIR__ . '/../vendor/autoload.php'; require_once __DIR__ . '/../vendor/autoload.php';
} else if (file_exists(__DIR__ . '/../../../autoload.php')) { } else if (file_exists(__DIR__ . '/../../../autoload.php')) {
require_once __DIR__ . '/../../../autoload.php'; require_once __DIR__ . '/../../../autoload.php';
} else { }
require_once $baseDir . '/Mage/Autoload.php'; require_once $baseDir . '/Mage/Autoload.php';
$loader = new \Mage\Autoload(); $loader = new \Mage\Autoload();
spl_autoload_register(array($loader, 'autoLoad')); spl_autoload_register(array($loader, 'autoLoad'));
}
// Clean arguments // Clean arguments
array_shift($argv); array_shift($argv);

Loading…
Cancel
Save