From e9299d08c0e7912fed998ac655c79612b0e661a2 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Tue, 23 May 2023 21:49:59 +0200 Subject: [PATCH] fix kernel detection in testing --- usr/lib/archboot/installer/pacman.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/archboot/installer/pacman.sh b/usr/lib/archboot/installer/pacman.sh index 8c52e0cdb..fff739ee1 100644 --- a/usr/lib/archboot/installer/pacman.sh +++ b/usr/lib/archboot/installer/pacman.sh @@ -84,7 +84,7 @@ _update_environment() { else if [[ -n "${_DOTESTING}" ]]; then #shellcheck disable=SC2086 - _ONLINE_KERNEL="$(pacman -Si testing/${_KERNELPKG} | grep Version | cut -d ':' -f2 | sed -e 's# ##' 2>${_NO_LOG})" + _ONLINE_KERNEL="$(pacman -Si core-testing/${_KERNELPKG} | grep Version | cut -d ':' -f2 | sed -e 's# ##' 2>${_NO_LOG})" fi if [[ -z "${_ONLINE_KERNEL}" ]]; then #shellcheck disable=SC2086