From 321e70479a369f7a1839df771569f28a642a499f Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 30 Jul 2024 15:49:39 +0200 Subject: [PATCH] update comment --- usr/bin/archboot-pacsetup.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/usr/bin/archboot-pacsetup.sh b/usr/bin/archboot-pacsetup.sh index 37d480779..9fc545298 100755 --- a/usr/bin/archboot-pacsetup.sh +++ b/usr/bin/archboot-pacsetup.sh @@ -42,9 +42,8 @@ _select_mirror() { _SYNC_URL=$(cat "${_ANSWER}") else # Form the full URL for our mirror by grepping for the server name in - # our mirrorlist and pulling the full URL out. Substitute 'core' in - # for the repository name, and ensure that if it was listed twice we - # only return one line for the mirror. + # our mirrorlist and pulling the full URL out and ensure that if it + # was listed twice we only return one line for the mirror. _SYNC_URL=$(rg -o "${_SERVER}.*" "${_PACMAN_MIRROR}" | head -n1) fi echo "Using mirror: ${_SYNC_URL}" >"${_LOG}"