Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Git-CPAN-Patch CPAN distribution.

Report information
The Basics
Id: 86950
Status: resolved
Priority: 0/
Queue: Git-CPAN-Patch

People
Owner: Nobody in particular
Requestors: RURBAN [...] cpan.org
Cc:
AdminCc:

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



Subject: wrong return or precedence
Git-CPAN-Patch-1.2.0.tar.gz:Git-CPAN-Patch-1.2.0/lib/Git/CPAN/Patch/Release.pm contains: return $archive->extract_path or die "extraction failed\n"; please change it to: return $archive->extract_path || die "extraction failed\n"; See also https://github.com/schwern/test-more/pull/385 perl parses "return $a or $b" effectively as "return $a;", which is not what was intended. -- Reini Urban
Ooops. Code corrected. A new version should come out in a few hours. Thanks!