From 9f42bc1bdc0133873cd4bcc881beb1b86fb638c1 Mon Sep 17 00:00:00 2001 From: Lyndon Brown Date: Tue, 10 Mar 2020 18:50:32 +0000 Subject: fix splitting bootloader string the existing solution simply did not work --- scripts/build/source_debian | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'scripts/build/source_debian') diff --git a/scripts/build/source_debian b/scripts/build/source_debian index 15b7fcc48..efd65036d 100755 --- a/scripts/build/source_debian +++ b/scripts/build/source_debian @@ -57,9 +57,7 @@ Chroot chroot "sh source-selection.sh" rm -f chroot/source-selection.sh mv chroot/source-selection.txt ./ -echo "${LB_BOOTLOADERS}" | \ -while IFS="," read -r BOOTLOADER -do +for BOOTLOADER in $(echo "${LB_BOOTLOADERS}" | tr "," "\n"); do echo "${BOOTLOADER}" >> source-selection.txt done -- cgit v1.2.3