mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Don't honour --status-quo when boot macOS recovery
This commit is contained in:
parent
6ea4fa812f
commit
d6cbcf29ee
1 changed files with 7 additions and 3 deletions
8
quickemu
8
quickemu
|
@ -280,12 +280,16 @@ function vm_boot() {
|
|||
fi
|
||||
|
||||
# Has the status quo been requested?
|
||||
if [ "${STATUS_QUO}" == "-snapshot" ] && [ -z "${iso}" ]; then
|
||||
if [ "${STATUS_QUO}" == "-snapshot" ]; then
|
||||
if [ -z "${img}" ] && [ -z "${iso}" ]; then
|
||||
echo " Existing disk state will be preserved, no writes will be committed."
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -n "${iso}" ] && [ -e "${iso}" ]; then
|
||||
echo " - Boot: ${iso}"
|
||||
echo " - Boot ISO: ${iso}"
|
||||
elif [ -n "${img}" ] && [ -e "${img}" ]; then
|
||||
echo " - Recovery: ${img}"
|
||||
fi
|
||||
|
||||
if [ -n "${fixed_iso}" ] && [ -e "${fixed_iso}" ]; then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue