Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/user_interaction.py
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-20 22:09:27 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-21 13:35:03 +0530
commit63a94a57708bdfb4cdfde0c24af2d324ba191beb (patch)
tree5776556a59e80516a9ac5362de62813b6396b0a6 /archinstall/lib/user_interaction.py
parent85c5275a8f35a7a0c0713d76c68ae0a127f1421c (diff)
add efibootmgr only on uefi systems
Diffstat (limited to 'archinstall/lib/user_interaction.py')
-rw-r--r--archinstall/lib/user_interaction.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 175079ee..70ff7a1e 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -149,7 +149,7 @@ def ask_for_bootloader() -> str:
if hasUEFI()==False:
bootloader="grub-install"
else:
- bootloader_choice = input("Would you like to use GRUB as a bootloader instead off systemd-boot [y/N] ").lower()
+ bootloader_choice = input("Would you like to use GRUB as a bootloader instead of systemd-boot? [y/N] ").lower()
if bootloader_choice == "y":
bootloader="grub-install"
return bootloader