Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-04-12 14:52:14 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2021-04-12 14:52:14 +0200
commit18b5ebff446f446205e17aa34c5912b8ee6c598c (patch)
tree97ee19c42316960ce69efdf09b8502b8bbf5504f /examples
parentae33151b9b1549eed36071e24c34170ac6009988 (diff)
parent897b67f7518b5fc0bac1f8a3fd02dc2d1266aea7 (diff)
Moving warning about UEFI to guided for now.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 0025abc1..a43e78ab 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -4,7 +4,7 @@ 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)
+ log("ArchInstall currently only supports machines booted with UEFI. MBR & GRUB support is coming in version 2.2.0!", fg="red", level=archinstall.LOG_LEVELS.Error)
exit(1)
def ask_user_questions():