Commit 6bed34fb authored by William Cahill-Manley's avatar William Cahill-Manley

Use rtrim instead of prepending DS to avoid Windows issues

parent dd5ff5f1
......@@ -142,7 +142,7 @@ class Bundle {
*/
protected static function autoloads($bundle, $config)
{
$path = DS . trim(Bundle::path($bundle), DS);
$path = rtrim(Bundle::path($bundle), DS);
foreach ($config['autoloads'] as $type => $mappings)
{
......
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