From e10c8a49deb54361b5228b8e1bf94e9a2eb4f5bd Mon Sep 17 00:00:00 2001 From: Celestia Ludenberg Date: Thu, 2 Jul 2026 19:59:43 +0200 Subject: [PATCH] fix: GRUB theme copy path - use iso_root instead of work_dir/iso --- buildiso | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildiso b/buildiso index ef31490..4522fb5 100755 --- a/buildiso +++ b/buildiso @@ -181,9 +181,9 @@ make_grub(){ # Copy Antergos GRUB theme to ISO boot (overrides Artix theme) if [[ -d "${work_dir}/livefs/usr/share/grub/themes/antergos" ]]; then - cp -r "${work_dir}/livefs/usr/share/grub/themes/antergos" "${work_dir}/iso/boot/grub/themes/" + cp -r "${work_dir}/livefs/usr/share/grub/themes/antergos" "${iso_root}/boot/grub/themes/" elif [[ -d "${work_dir}/rootfs/usr/share/grub/themes/antergos" ]]; then - cp -r "${work_dir}/rootfs/usr/share/grub/themes/antergos" "${work_dir}/iso/boot/grub/themes/" + cp -r "${work_dir}/rootfs/usr/share/grub/themes/antergos" "${iso_root}/boot/grub/themes/" fi if ${use_dracut}; then