diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-15 20:19:15 +0000 |
---|---|---|
committer | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-16 01:36:53 +0000 |
commit | 789118855772e4bdf3590c7a64329cc417fc742c (patch) | |
tree | f38eb08aa2125af4ce9b4c968db615d6e53b0e57 | |
parent | 00a2fabcdf3e6c3021b8392a404ab7d068571250 (diff) | |
download | vyos-live-build-789118855772e4bdf3590c7a64329cc417fc742c.tar.gz vyos-live-build-789118855772e4bdf3590c7a64329cc417fc742c.zip |
installer: fix broken loop
Gbp-Dch: Ignore
-rwxr-xr-x | scripts/build/installer_debian-installer | 3 |
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}" |