Doors/bin/mirrors

18 lines
345 B
Text
Raw Normal View History

2024-02-17 20:03:35 -05:00
#!/bin/sh
. /etc/os-release
OS=$NAME
case "$OS" in
"Arch Linux")
rate-mirrors arch | sudo tee /etc/pacman.d/mirrorlist
;;
"Arch Linux ARM")
rate-mirrors archarm | sudo tee /etc/pacman.d/mirrorlist
;;
*)
echo "$OS is not supported by this script at this time."
exit 1
;;
esac