forked from josch/mmdebstrap
Use dpkg-query --show to not get stuck in a pager
This commit is contained in:
parent
e27a8d3472
commit
c66b41eb7e
1 changed files with 2 additions and 2 deletions
|
@ -17,10 +17,10 @@ libdir="/usr/lib/$(dpkg-architecture -a "$chrootarch" -q DEB_HOST_MULTIARCH)"
|
|||
|
||||
# if eatmydata was actually installed properly, then we are not removing
|
||||
# anything here
|
||||
if ! chroot "$rootdir" dpkg-query --list eatmydata; then
|
||||
if ! chroot "$rootdir" dpkg-query --show eatmydata; then
|
||||
rm "$rootdir/usr/bin/eatmydata"
|
||||
fi
|
||||
if ! chroot "$rootdir" dpkg-query --list libeatmydata1; then
|
||||
if ! chroot "$rootdir" dpkg-query --show libeatmydata1; then
|
||||
rm "$rootdir$libdir"/libeatmydata.so*
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue