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
|
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)
|
||||||
|
|
Loading…
Reference in New Issue