From 0fd3dc7497f761c9ee7674a3d69e386ce318f8ad Mon Sep 17 00:00:00 2001 From: Georg Pfuetzenreuter Date: Sat, 24 Aug 2024 17:48:41 +0200 Subject: [PATCH] build-and-push: improve final message Avoid redundant printing of the closing messages by disabling verbose mode prior. Signed-off-by: Georg Pfuetzenreuter --- linux/build-and-push.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux/build-and-push.sh b/linux/build-and-push.sh index 8ccb144..20a9e4e 100755 --- a/linux/build-and-push.sh +++ b/linux/build-and-push.sh @@ -84,6 +84,7 @@ $SSH -- dracut --kernel-image "$VMLINUZ" "$INITRD" "$LINUX_VERSION" $SSH -- grub2-mkconfig -o /boot/grub2/grub.cfg ROOT="$($SSH -- blkid -o value -s UUID -t LABEL=ROOT)" -echo "Root partition UUID: $ROOT" +set +x +echo "Root partition UUID: $ROOT" echo 'Now reboot, test, and update the bisection.'