Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-20 18:53:47 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-20 18:53:47 +0530
commit23704b7908798ff0328daa0fe90d3299806c50e3 (patch)
tree81a19f86d87252f4ffe4de96818e7d7a0d7ab1bf /examples
parent9c400aa7272fc8eb5c34b19fd65e0f3ed6cb01f5 (diff)
repharsed some stuff
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 408f377a..7e36f0b2 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -192,7 +192,7 @@ def ask_user_questions():
# Additional packages (with some light weight error handling for invalid package names)
while True:
if not archinstall.arguments.get('packages', None):
- print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr(in uefi systems) and optional profile packages are installed.")
+ print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr(on uefi systems)/grub(on bios systems) and optional profile packages are installed.")
print("If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.")
archinstall.arguments['packages'] = [package for package in input('Write additional packages to install (space separated, leave blank to skip): ').split(' ') if len(package)]