From 2acfbee5fd03ffdba5dc65983b710817d72bb5c2 Mon Sep 17 00:00:00 2001 From: Roland Clobus Date: Sat, 14 Jan 2023 20:09:30 +0100 Subject: [PATCH] installer: Remove the udeb files Without the quotes, the * inside the exclusion lists will be treated as a will card, instead of the literal star. --- scripts/build/installer_debian-installer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer index 65eb6b16b..faa1ca3ee 100755 --- a/scripts/build/installer_debian-installer +++ b/scripts/build/installer_debian-installer @@ -720,8 +720,8 @@ EOF # Remove all udebs to be excluded from inclusion Echo_debug "Removing excluded udebs" while read EXCLUDE; do - rm -f "${EXCLUDE}_*.udeb" done < exclude + rm -f ${EXCLUDE}_*.udeb # Sort udebs into alphabetised pool structure Echo_debug "Organising into pool structure"