From addb9c65feb35c5ccb072bb660ae1755a2f17023 Mon Sep 17 00:00:00 2001 From: shanmite Date: Fri, 1 Dec 2023 10:21:08 +0800 Subject: [PATCH] fix: ghproxy.com->mirror.ghproxy.com (#333) Fixed #333 --- lib/update.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/update.js b/lib/update.js index 72bd93d..6536462 100644 --- a/lib/update.js +++ b/lib/update.js @@ -68,7 +68,7 @@ async function update(isDdownload) { if (download_url.length) { if (isDdownload) { await try_for_each(download_url.entries(), async ([i, url]) => { - let proxy_url = "https://ghproxy.com/"; + let proxy_url = "https://mirror.ghproxy.com/"; proxy_url += url log.warn('自动下载', `切换代理${proxy_url}`) await download(proxy_url, `latest_version${i}.zip`)