style(indentation): replace tabs with spaces

This commit is contained in:
Martin Wimpress 2024-05-09 01:46:22 +01:00 committed by Martin Wimpress
parent 69131b2e39
commit 6f92a52961
1 changed files with 7 additions and 7 deletions

View File

@ -1842,13 +1842,13 @@ if [ -n "${VM}" ] && [ -e "${VM}" ]; then
fi fi
if [ -e "${disk_img}" ]; then if [ -e "${disk_img}" ]; then
DiskChkMsg="$("$QEMU_IMG" check -q "${disk_img}" 2>&1)" DiskChkMsg="$("$QEMU_IMG" check -q "${disk_img}" 2>&1)"
if [[ $DiskChkMsg ]]; then if [[ $DiskChkMsg ]]; then
echo; echo "ERROR! disk.qcow2 has problems. Try qemu-img check --help." echo; echo "ERROR! disk.qcow2 has problems. Try qemu-img check --help."
echo; echo "$DiskChkMsg" ; echo echo; echo "$DiskChkMsg" ; echo
exit 1 exit 1
fi fi
fi fi
VMDIR=$(dirname "${disk_img}") VMDIR=$(dirname "${disk_img}")
VMNAME=$(basename "${VM}" .conf) VMNAME=$(basename "${VM}" .conf)