chore: fix qemu-boot.sh

Fixes a typo that cased the switch statement to not match Linux
environments.

Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
This commit is contained in:
Andrew Rynhard 2019-08-24 20:10:58 +00:00
parent f5f6c29e99
commit fd25c019bf

View File

@ -8,7 +8,7 @@ if [[ $# -ne 1 ]]; then
fi
case $(uname -s) in
LINUX*)
Linux*)
ACCEL=kvm
;;