ci: vfmt cmd/tools/vpm.v

pull/13189/head
Delyan Angelov 2022-01-15 18:02:58 +02:00
parent f24e9cc80a
commit ab7cc5809a
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 2 additions and 2 deletions

View File

@ -691,7 +691,7 @@ fn get_module_meta_info(name string) ?Mod {
modurl := server_url + '/jsmod/$name' modurl := server_url + '/jsmod/$name'
verbose_println('Retrieving module metadata from: "$modurl" ...') verbose_println('Retrieving module metadata from: "$modurl" ...')
r := http.get(modurl) or { r := http.get(modurl) or {
errors << 'Http server did not respond to our request for "${modurl}" .' errors << 'Http server did not respond to our request for "$modurl" .'
errors << 'Error details: $err' errors << 'Error details: $err'
continue continue
} }