From 2d1b46aa409e5253ad0c19f7e6959fa6e098f1f3 Mon Sep 17 00:00:00 2001 From: askiiart Date: Fri, 8 Nov 2024 20:00:05 -0600 Subject: [PATCH] fix rate-mirrors --- akshara | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/akshara b/akshara index 78b9e9c..b7484b6 100755 --- a/akshara +++ b/akshara @@ -250,7 +250,8 @@ def update_system(): exec_chroot('pacman-key', '--init') exec_chroot('pacman-key', '--populate') - exec_chroot('sh', '-c', 'mkdir /tmp/rate-mirrors/; cd /tmp/rate-mirrors/; curl -LO $(curl -s https://api.github.com/repos/westandskif/rate-mirrors/releases/latest | grep "browser_download_url.*rate-mirrors-v.*-x86_64-unknown-linux-musl.tar.gz" | cut -d : -f 2,3 | tr -d \\")') + # FIXME: If the GitHub API is down or something, this completely breaks + exec_chroot('sh', '-c', 'mkdir /tmp/rate-mirrors/; cd /tmp/rate-mirrors/; curl -LO $(curl -s https://api.github.com/repos/westandskif/rate-mirrors/releases/latest | grep "browser_download_url.*rate-mirrors-v.*-x86_64-unknown-linux-musl.tar.gz" | cut -d : -f 2,3 | tr -d \" | tr -d " ")') exec_chroot('bash', '-c', 'cd /tmp/rate-mirrors/; tar -xzf rate-mirrors*; cd $(find /tmp/rate-mirrors/ -mindepth 1 -maxdepth 1 -type d); ./rate_mirrors --disable-comments-in-file --entry-country=US --protocol=https arch --max-delay 7200 > /etc/pacman.d/mirrorlist') #exec_chroot('sed', 's/#//g', '-i', '/etc/pacman.d/mirrorlist')