From 6f92a529614dadefe948113c90e6ffcc257fc38c Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 9 May 2024 01:46:22 +0100 Subject: [PATCH] style(indentation): replace tabs with spaces --- quickemu | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/quickemu b/quickemu index eb1cc0b..6c54bb4 100755 --- a/quickemu +++ b/quickemu @@ -1842,13 +1842,13 @@ if [ -n "${VM}" ] && [ -e "${VM}" ]; then fi if [ -e "${disk_img}" ]; then - DiskChkMsg="$("$QEMU_IMG" check -q "${disk_img}" 2>&1)" - if [[ $DiskChkMsg ]]; then - echo; echo "ERROR! disk.qcow2 has problems. Try qemu-img check --help." - echo; echo "$DiskChkMsg" ; echo - exit 1 - fi - fi + DiskChkMsg="$("$QEMU_IMG" check -q "${disk_img}" 2>&1)" + if [[ $DiskChkMsg ]]; then + echo; echo "ERROR! disk.qcow2 has problems. Try qemu-img check --help." + echo; echo "$DiskChkMsg" ; echo + exit 1 + fi + fi VMDIR=$(dirname "${disk_img}") VMNAME=$(basename "${VM}" .conf)