style(indentation): replace tabs with spaces
This commit is contained in:
parent
69131b2e39
commit
6f92a52961
14
quickemu
14
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)
|
||||
|
|
Loading…
Reference in New Issue