From cf42c366e02efb161f7dacfb97cf172d5cf7dfc3 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:41:57 -0400 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