Moving warning about UEFI to guided for now.
This commit is contained in:
parent
28d2743d71
commit
ae33151b9b
|
|
@ -16,10 +16,6 @@ from .lib.hardware import *
|
|||
|
||||
__version__ = "2.1.3"
|
||||
|
||||
if hasUEFI() is False:
|
||||
log("Archinstall currently only support UEFI booted machines. MBR & GRUB is coming in version 2.2.0!", fg="red", level=LOG_LEVELS.Error)
|
||||
exit(1)
|
||||
|
||||
## Basic version of arg.parse() supporting:
|
||||
## --key=value
|
||||
## --boolean
|
||||
|
|
|
|||
|
|
@ -3,6 +3,10 @@ import archinstall
|
|||
from archinstall.lib.hardware import hasUEFI
|
||||
from archinstall.lib.profiles import Profile
|
||||
|
||||
if hasUEFI() is False:
|
||||
log("Archinstall currently only support UEFI booted machines. MBR & GRUB is coming in version 2.2.0!", fg="red", level=archinstall.LOG_LEVELS.Error)
|
||||
exit(1)
|
||||
|
||||
def ask_user_questions():
|
||||
"""
|
||||
First, we'll ask the user for a bunch of user input.
|
||||
|
|
|
|||
Loading…
Reference in New Issue