diff --git a/debian/changelog b/debian/changelog index c74b1bd9..69fb84fe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,6 @@ livecd-rootfs (2.452) UNRELEASED; urgency=medium - * + * Fix suppressing kpartx error -- Balint Reczey Tue, 29 Aug 2017 16:18:36 +0200 diff --git a/live-build/functions b/live-build/functions index fee44f67..7d645b9e 100644 --- a/live-build/functions +++ b/live-build/functions @@ -19,7 +19,7 @@ clean_loops() { kpartx_stdout=$(kpartx -v -d "${backing_img}") || kpartx_ret=$? echo "$kpartx_stdout" if [ -n "$kpartx_ret" ]; then - if echo "$kpartx_stdout" | grep -q "loop deleted: "; then + if echo "$kpartx_stdout" | grep -q "loop deleted"; then echo "Suppressing kpartx returning error (#860894)" else exit $kpartx_ret