summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-03-15 20:19:15 +0000
committerLyndon Brown <jnqnfe@gmail.com>2020-03-16 01:36:53 +0000
commit789118855772e4bdf3590c7a64329cc417fc742c (patch)
treef38eb08aa2125af4ce9b4c968db615d6e53b0e57
parent00a2fabcdf3e6c3021b8392a404ab7d068571250 (diff)
downloadvyos-live-build-789118855772e4bdf3590c7a64329cc417fc742c.tar.gz
vyos-live-build-789118855772e4bdf3590c7a64329cc417fc742c.zip
installer: fix broken loop
Gbp-Dch: Ignore
-rwxr-xr-xscripts/build/installer_debian-installer3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer
index b1effca76..c24311612 100755
--- a/scripts/build/installer_debian-installer
+++ b/scripts/build/installer_debian-installer
@@ -641,8 +641,7 @@ then
done < exclude
# Sort udebs into alphabetised pool structure
- for UDEB in "${UDEBS} ${UDEBS_DERIVED}"
- do
+ for UDEB in ${UDEBS} ${UDEBS_DERIVED}; do
_UDEB_FILENAME="$(basename ${UDEB})"
Install_file "${_UDEB_FILENAME}" "pool-udeb"
rm "${_UDEB_FILENAME}"