Escaping quotes to workaround a false-positive of checkbashisms in binary_debian-installer.
This commit is contained in:
parent
a2f728280b
commit
4d95bc6e79
|
@ -477,7 +477,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
|
||||
|
|
Loading…
Reference in New Issue