mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
6 lines
204 B
Bash
Executable File
6 lines
204 B
Bash
Executable File
#!/usr/bin/env sh
|
|
|
|
error() { clear; printf "ERROR:\\n%s\\n" "$1"; exit;}
|
|
|
|
reflector --verbose --latest 1000 --sort rate --save /etc/pacman.d/mirrorlist >/dev/null 2>&1 || error "Couldn't refresh mirrors"
|