From 7b8c3c07ae00c76a25a0bf8d10f0668ed49770b0 Mon Sep 17 00:00:00 2001 From: Johan Gunnarsson Date: Tue, 16 Apr 2019 20:00:30 +0200 Subject: [PATCH] build-debian: Use verbose cp and rm --- build-debian | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-debian b/build-debian index 40eb214..1205a7b 100755 --- a/build-debian +++ b/build-debian @@ -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"