From f08c768c8eb74d9afc7b65e1d1f13d55452a035c Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 21 Jun 2022 12:27:27 +0300 Subject: [PATCH] tools: add a new readonly VPM server mirror url, to mitigate failures of the main vpm.vlang.io --- cmd/tools/vpm.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/vpm.v b/cmd/tools/vpm.v index b22107f877..4c6500863e 100644 --- a/cmd/tools/vpm.v +++ b/cmd/tools/vpm.v @@ -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']