From d26b4ff4de28af014b55a1040d5dd7fe01c026fb Mon Sep 17 00:00:00 2001 From: Tianling Shen Date: Sat, 27 Nov 2021 03:09:47 +0800 Subject: [PATCH] scripts/download.pl: reorder self-hosted mirrors Signed-off-by: Tianling Shen --- CONTRIBUTED.md | 3 --- scripts/download.pl | 9 ++++----- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTED.md b/CONTRIBUTED.md index 35c70dedfd..a2fd0f2862 100644 --- a/CONTRIBUTED.md +++ b/CONTRIBUTED.md @@ -49,8 +49,5 @@ luci-app-beardropper source: [NateLol/natelol](https://github.com/NateLol/natelo luci-app-vssr source: [jerrykuku/luci-app-vssr](https://github.com/jerrykuku/luci-app-vssr).
luci-proto-minieap source: [ysc3839/luci-proto-minieap](https://github.com/ysc3839/luci-proto-minieap). -## Download Mirrors -[openwrt.cc](https://openwrt.cc/dl/immortalwrt) by [@SuLingGG](https://github.com/SuLingGG). - ## License ### Depend on their own License. diff --git a/scripts/download.pl b/scripts/download.pl index 95ed0482fa..9d2c2c7c18 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -281,11 +281,10 @@ foreach my $mirror (@ARGV) { } } -push @mirrors, "https://sources.immortalwrt.org"; -push @mirrors, "https://sources.cdn.immortalwrt.org"; -push @mirrors, "https://mirror01.download.immortalwrt.eu.org"; -push @mirrors, "https://mirror02.download.immortalwrt.eu.org"; -push @mirrors, "https://openwrt.cc/dl/immortalwrt/immortalwrt"; +push @mirrors, 'https://mirror02.download.immortalwrt.eu.org'; +push @mirrors, 'https://mirror01.download.immortalwrt.eu.org'; +push @mirrors, 'https://sources.immortalwrt.org'; +push @mirrors, 'https://sources.cdn.immortalwrt.org'; push @mirrors, 'https://sources.cdn.openwrt.org'; push @mirrors, 'https://sources.openwrt.org'; push @mirrors, 'https://mirror2.openwrt.org/sources';