Skip to content

Commit

Permalink
FIX stop autoload failure on case sensitive system
Browse files Browse the repository at this point in the history
Trying to install and run cow on an Ubuntu system I was greeted by a fatal error "can't find class ChangeLog" - which was caused by the differences between the class name call of `ChangeLog` and the class name (and thus filename) being `Changelog.php`. Correcting this single erroneous reference has fixed the issue.
  • Loading branch information
NightJar authored Feb 21, 2018
1 parent b280894 commit 09dddbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected function getDefaultCommands()
$commands[] = new Commands\Release\Branch();
$commands[] = new Commands\Release\Translate();
$commands[] = new Commands\Release\Test();
$commands[] = new Commands\Release\ChangeLog();
$commands[] = new Commands\Release\Changelog();

// Publish sub-commands
$commands[] = new Commands\Release\Tag();
Expand Down

0 comments on commit 09dddbf

Please sign in to comment.