Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix logic error
  • Loading branch information
hinrik committed Jul 24, 2009
1 parent dbcc997 commit 068ce3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Changes
@@ -1,3 +1,6 @@
0.15
- Fix logic error causing 'ansi' not to be the default on non-Win32

0.14 Fri Jul 24 09:20:07 GMT 2009
- Remove Module::Install::AuthorRequires for now, it's not working right
- Make Win32::Console::ANSI optional
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Grok.pm
Expand Up @@ -16,7 +16,7 @@ my %opt;

our $GOT_ANSI;
BEGIN {
if ($^O ne 'Win32') {
if ($^O eq 'Win32') {
eval {
require Win32::Console::ANSI;
$GOT_ANSI = 1;
Expand Down

0 comments on commit 068ce3f

Please sign in to comment.