diff --git a/scripts/.config/scripts/pacrank.sh b/scripts/.config/scripts/pacrank.sh index 22300d6..d313d85 100755 --- a/scripts/.config/scripts/pacrank.sh +++ b/scripts/.config/scripts/pacrank.sh @@ -10,5 +10,10 @@ country=$1 INPUT=/etc/pacman.d/mirrorlist.pacnew OUTPUT=/etc/pacman.d/mirrorlist +if [ ! -f "$INPUT" ]; then + echo "$INPUT is missing." + exit 1 +fi + cat $INPUT | awk -v "COUNTRY=$country" 'BEGIN { c="" } /^##/ { c=substr($0,4); } /^#Server/ { if(c==COUNTRY) { print substr($0,2); } }' | rankmirrors - | sudo tee $OUTPUT