build-debian: Use verbose cp and rm

This commit is contained in:
Johan Gunnarsson 2019-04-16 20:00:30 +02:00
parent f9af79fbca
commit 7b8c3c07ae
1 changed files with 3 additions and 3 deletions

View File

@ -70,7 +70,7 @@ cp -rv --preserve=mode ../pre-2nd-stage-files/* debian
cp -rv --preserve=mode ../pre-2nd-stage-files-${ARCH}/* debian
# Copy ARM emulation stuff
cp /usr/bin/qemu-*-static debian/usr/bin || :
cp -v /usr/bin/qemu-*-static debian/usr/bin || :
# Build a Debian root filesystem (second stage)
chroot debian /bin/sh -e <<- EOF
@ -86,7 +86,7 @@ chroot debian /bin/sh -e <<- EOF
EOF
# Remove ARM emulation stuff again
rm debian/usr/bin/qemu-*-static || :
rm -v debian/usr/bin/qemu-*-static || :
cp -rv --preserve=mode ../post-2nd-stage-files/* debian
@ -96,4 +96,4 @@ fallocate -l 900MiB ext4.img
mkfs.ext4 -d debian ext4.img
gzip ext4.img
cp ext4.img.gz "${IMAGE2}-${PASSWORD}.bin.gz"
cp -v ext4.img.gz "${IMAGE2}-${PASSWORD}.bin.gz"