diff options
author | Daniel Baumann <daniel@debian.org> | 2013-01-24 00:08:00 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2013-01-24 00:08:07 +0100 |
commit | 84af3683bd8e4696d8a1fc3b48731f9481ae8cea (patch) | |
tree | 8613eddc80f02e9fca99d3e944407eb156297233 | |
parent | ea1ac9f2697f102c96711c9b63bdda66a1faaaf2 (diff) | |
download | vyos-live-build-84af3683bd8e4696d8a1fc3b48731f9481ae8cea.tar.gz vyos-live-build-84af3683bd8e4696d8a1fc3b48731f9481ae8cea.zip |
Escaping quotes to workaround a false-positive of checkbashisms in binary_debian-installer.
-rwxr-xr-x | scripts/build/binary_debian-installer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/binary_debian-installer b/scripts/build/binary_debian-installer index 624b42e5f..70be40b0c 100755 --- a/scripts/build/binary_debian-installer +++ b/scripts/build/binary_debian-installer @@ -528,7 +528,7 @@ then # Drop the packages already installed that d-i doesn't explicitely need _REMAINING_PACKAGES="$(echo ${DI_FIRMWARE_PACKAGES} ${DI_REQ_PACKAGES} | sed -e 's# #|#g')" - _REMAINING_PACKAGES="$(sed -n -e 's|Package: ||p' chroot/var/lib/dpkg/status.tmp | grep -E -v "^${_REMAINING_PACKAGES}$")" + _REMAINING_PACKAGES="$(sed -n -e 's|Package: ||p' chroot/var/lib/dpkg/status.tmp | grep -E -v \"^${_REMAINING_PACKAGES}$\")" for _PACKAGE in ${_REMAINING_PACKAGES} do |