From 4ccce61aabd87cba0226f325418e5420c9dfebee Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 12 Dec 2021 01:17:25 -0500 Subject: [PATCH] Redirect output to stdout --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5a3beec..1a220a5 100755 --- a/install.sh +++ b/install.sh @@ -519,7 +519,7 @@ blockcheck() { if ! cmp --silent --bytes ${blockdev_size_bytes} /dev/zero ${target_disk}; then echo "false." echo "Wiping block device '${target_disk}' (${count} blocks of ${size} bytes)..." - dd if=/dev/zero of=${target_disk} bs=${size} count=${count} oflag=direct status=progress + dd if=/dev/zero of=${target_disk} bs=${size} count=${count} oflag=direct status=progress 2>&1 else echo "done." fi