1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

tools: add a new readonly VPM server mirror url, to mitigate failures of the main vpm.vlang.io

This commit is contained in:
Delyan Angelov 2022-06-21 12:27:27 +03:00
parent e505fcdac0
commit f08c768c8e
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -12,7 +12,7 @@ import vhelp
import v.vmod
const (
default_vpm_server_urls = ['https://vpm.vlang.io']
default_vpm_server_urls = ['https://vpm.vlang.io', 'https://vpm.url4e.com']
valid_vpm_commands = ['help', 'search', 'install', 'update', 'upgrade', 'outdated',
'list', 'remove', 'show']
excluded_dirs = ['cache', 'vlib']