update pacsetup

This commit is contained in:
Tobias Powalowski 2024-06-27 09:57:02 +02:00
parent 807e91294c
commit 905bb2592b

View file

@ -29,8 +29,8 @@ _select_mirror() {
fi
fi
# This regex doesn't honor commenting
_MIRRORS=$(rg -o '(https://[^/]*)' -r '$1 _')
[[ -z ${_MIRRORS} ]] && _MIRRORS=$(rg -o '(http)://[^/]*' "${_PACMAN_MIRROR}" | sd '$' ' _')
_MIRRORS="$(rg -o '(https://[^/]*)' -r '$1 _' ${_PACMAN_MIRROR})"
[[ -z ${_MIRRORS} ]] && _MIRRORS="$(rg -o '(https://[^/]*)' -r '$1 _' ${_PACMAN_MIRROR})"
#shellcheck disable=SC2086
_dialog --cancel-label "${_LABEL}" --title " Package Mirror " --menu "" 13 55 7 \
"Custom Mirror" "_" ${_MIRRORS} 2>${_ANSWER} || return 1