From 923d73b691e6ad6f86f8720633b4ec9485c2a836 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 (cherry picked from commit d26b4ff4de28af014b55a1040d5dd7fe01c026fb) --- CONTRIBUTED.md | 3 --- scripts/download.pl | 9 ++++----- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/CONTRIBUTED.md b/CONTRIBUTED.md index 6963a9737b..02c2a8e439 100644 --- a/CONTRIBUTED.md +++ b/CONTRIBUTED.md @@ -64,8 +64,5 @@ luci-proto-modemmanager source: [nickberry17/luci-proto-modemmanager](https://gi luci-theme-infinityfreedom source: [xiaoqingfengATGH/luci-theme-infinityfreedom](https://github.com/xiaoqingfengATGH/luci-theme-infinityfreedom).
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 946d9fa6bc..6bb4316a07 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -284,11 +284,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';