Skip to content

Commit

Permalink
Removing escaping which proved to cause the problem here (#3983)
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik committed Jul 10, 2022
1 parent 44ac745 commit 0b4fe79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/debootstrap.sh
Expand Up @@ -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[@]})'

Expand Down

0 comments on commit 0b4fe79

Please sign in to comment.