We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm transferring and splitting up some issues reported in App::Cpan many problems, multiple fixes.
In App::Cpan::_download, the log line uses the wrong variable as a hash key:
$logger->info( "Downloaded [$arg] to [$paths{$arg}]" );
It should be:
$logger->info( "Downloaded [$arg] to [$paths{$module}]" );
This is related to #162 with some rearranging that needs to happen for track errors and return the appropriate values.
Patch provided by "eponymous alias" [email protected] in the RT ticket App.Cpan.patch.txt
The text was updated successfully, but these errors were encountered:
andk#167 use correct key to hash in downloaded log message
d5e36ca
Co-authored-by: "eponymous alias" <[email protected]>
Indeed, right now cpan -g exits with an error (although the operation succeeds). The issue seemed to be fixed, but soon broken again.
cpan -g
Sorry, something went wrong.
No branches or pull requests
I'm transferring and splitting up some issues reported in App::Cpan many problems, multiple fixes.
In App::Cpan::_download, the log line uses the wrong variable as a hash key:
It should be:
This is related to #162 with some rearranging that needs to happen for track errors and return the appropriate values.
Patch provided by "eponymous alias" [email protected] in the RT ticket
App.Cpan.patch.txt
The text was updated successfully, but these errors were encountered: