diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-02-20 08:37:49 +0000 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-03-05 11:18:20 +0000 |
commit | fde401a9ac4bbc709ba83c25aa53bd42ee9262fd (patch) | |
tree | 1d89439eeb58014205c6b304fde8f861a97fa300 | |
parent | 63f374b861b7ddea56b3edd57a0fc77d5fde092a (diff) | |
download | vyos-live-build-fde401a9ac4bbc709ba83c25aa53bd42ee9262fd.tar.gz vyos-live-build-fde401a9ac4bbc709ba83c25aa53bd42ee9262fd.zip |
installer: fix unquoted string
Gbp-Dch: Ignore
Closes: #952851
-rwxr-xr-x | scripts/build/installer_debian-installer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/installer_debian-installer b/scripts/build/installer_debian-installer index e9843d672..a0a3f5f1a 100755 --- a/scripts/build/installer_debian-installer +++ b/scripts/build/installer_debian-installer @@ -528,7 +528,7 @@ then fi # Sorting udebs - if [ "${LB_DERIVATIVE}" = true ] + if [ "${LB_DERIVATIVE}" = "true" ] then UDEBS="$(awk '/Filename: / { print $2 }' Packages.derivative)" fi |