From 13abd0c5a7a302e7606864caf4db72cff53eb1ca Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 18 Aug 2022 17:51:31 +0100 Subject: [PATCH] Move MSR warning to an appropriate section of the status messages --- quickemu | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/quickemu b/quickemu index 7735830..98fab07 100755 --- a/quickemu +++ b/quickemu @@ -336,6 +336,11 @@ function vm_boot() { boot=${boot,,} guest_os=${guest_os,,} + if [ "${guest_os}" == "macos" ] || [ "${guest_os}" == "windows" ]; then + # Display MSRs alert if the guest is macOS or windows + ignore_msrs_alert + fi + # Always Boot macOS using EFI if [ "${guest_os}" == "macos" ]; then boot="efi" @@ -636,11 +641,6 @@ function vm_boot() { img="" fi - if [ "${guest_os}" == "macos" ] || [ "${guest_os}" == "windows" ]; then - # Display MSRs alert if the guest is macOS or windows - ignore_msrs_alert - fi - # Has the status quo been requested? if [ "${STATUS_QUO}" == "-snapshot" ]; then if [ -z "${img}" ] && [ -z "${iso}" ]; then