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
Running cpanm on a git repo clones the entire repo. For large repos this can lead to large downloads that take a reasonable amount of time.
So far as I can tell the relevant code is at this line:
cpanminus/Menlo-Legacy/lib/Menlo/CLI/Compat.pm
Line 1699 in 287cfbd
Unless I'm missing something only the latest commit should be needed, so this line could be changed to:
$self->run_command([ 'git', 'clone', '--depth', '1', $uri, $dir ]);
Please let me know if a PR would be useful.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Running cpanm on a git repo clones the entire repo. For large repos this can lead to large downloads that take a reasonable amount of time.
So far as I can tell the relevant code is at this line:
cpanminus/Menlo-Legacy/lib/Menlo/CLI/Compat.pm
Line 1699 in 287cfbd
Unless I'm missing something only the latest commit should be needed, so this line could be changed to:
Please let me know if a PR would be useful.
The text was updated successfully, but these errors were encountered: