Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the App-GitGot CPAN distribution.

Report information
The Basics
Id: 87209
Status: new
Priority: 0/
Queue: App-GitGot

People
Owner: Nobody in particular
Requestors: rurban [...] x-ray.at
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: [PATCH] wrong return precedence
returns binds stronger than or, so the expressions after or are ignored. See https://rt.perl.org/rt3/Public/Bug/Display.html?id=59802
Subject: App-GitGot-1.08-returnor.patch
diff -bu App-GitGot-1.08-DKx19p/lib/App/GitGot/Repo/Git.pm~ App-GitGot-1.08-DKx19p/lib/App/GitGot/Repo/Git.pm --- App-GitGot-1.08-DKx19p/lib/App/GitGot/Repo/Git.pm~ 2013-07-04 16:37:34.000000000 -0500 +++ App-GitGot-1.08-DKx19p/lib/App/GitGot/Repo/Git.pm 2013-07-23 12:27:09.666040351 -0500 @@ -58,7 +58,7 @@ } else { return Git::Wrapper->new( $self->path ) - or die "Can't make Git::Wrapper"; + || die "Can't make Git::Wrapper"; } }