Removing escaping which proved to cause the problem here (#3983)

This commit is contained in:
Igor Pečovnik 2022-07-10 20:45:56 +02:00 committed by GitHub
parent 44ac745ae3
commit 0b4fe79ad7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -336,7 +336,7 @@ create_rootfs_cache()
# stage: check md5 sum of installed packages. Just in case.
display_alert "Check MD5 sum of installed packages" "info"
eval "LC_ALL=C LANG=C sudo chroot $SDCARD /bin/bash -e -c 'dpkg-query -f "'\${binary:Package}\\n'" -W | xargs debsums'" \
eval 'LC_ALL=C LANG=C sudo chroot $SDCARD /bin/bash -e -c "dpkg-query -f ${binary:Package} -W | xargs debsums"' \
${PROGRESS_LOG_TO_FILE:+' | tee -a $DEST/${LOG_SUBPATH}/debootstrap.log'} \
${OUTPUT_VERYSILENT:+' >/dev/null 2>/dev/null'} ';EVALPIPE=(${PIPESTATUS[@]})'