fix(quickemu): resolve shellcheck SC2164 warning

https://www.shellcheck.net/wiki/SC2164
This commit is contained in:
Martin Wimpress 2024-05-09 02:16:04 +01:00 committed by Martin Wimpress
parent da6aa9fb2c
commit f282e4eb44
1 changed files with 1 additions and 1 deletions

View File

@ -1831,7 +1831,7 @@ if [ -n "${VM}" ] && [ -e "${VM}" ]; then
VM_MONITOR_SOCKETPATH="${VMDIR}/${VMNAME}-monitor.socket" VM_MONITOR_SOCKETPATH="${VMDIR}/${VMNAME}-monitor.socket"
VM_SERIAL_SOCKETPATH="${VMDIR}/${VMNAME}-serial.socket" VM_SERIAL_SOCKETPATH="${VMDIR}/${VMNAME}-serial.socket"
if [ ! -f "${disk_img}" ]; then if [ ! -f "${disk_img}" ]; then
cd "${VMPATH}" pushd "${VMPATH}" || exit
fi fi
# Backwards compatibility for ${driver_iso} # Backwards compatibility for ${driver_iso}