vpm: show the final path where a module is installed, improve color contrast for white on black terminal sessions

This commit is contained in:
Delyan Angelov 2024-03-27 10:36:27 +02:00
parent 992334390c
commit bb320f19c8
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED
4 changed files with 7 additions and 7 deletions

View file

@ -162,7 +162,7 @@ fn (mut p Parser) parse_module(m string) {
if resp := http.head('${info.url}/issues/new') {
if resp.status_code == 200 {
issue_tmpl_url := '${info.url}/issues/new?title=Missing%20Manifest&body=${info.name}%20is%20missing%20a%20manifest,%20please%20consider%20adding%20a%20v.mod%20file%20with%20the%20modules%20metadata.'
details = 'Help to ensure future-compatibility by adding a `v.mod` file or opening an issue at:\n`${issue_tmpl_url}`'
details = 'Please help us ensure future-compatibility, by adding a `v.mod` file or opening an issue at:\n`${issue_tmpl_url}`'
}
}
vpm_warn('`${info.name}` is missing a manifest file.', details: details)