Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-03-08 14:47:24 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-08 14:47:24 +0100
commit775a26f738002ad124200716b68f92ebc9e91a5c (patch)
tree6323bf03dd492312c66e93a9b3299b1d75fc3e36 /archinstall
parentdd66aeda9afac70c087d7a399eec456510d4bca8 (diff)
Added a abort message
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/user_interaction.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index e20e98b1..01e3372c 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -90,10 +90,11 @@ def ask_to_configure_network():
def ask_for_disk_layout():
options = {
'keep-existing' : 'Keep existing partition layout and select which ones to use where.',
- 'format-all' : 'Format entire drive and setup a basic partition scheme.'
+ 'format-all' : 'Format entire drive and setup a basic partition scheme.',
+ 'abort' : 'abort'
}
- return generic_select(options.values(), "Found partitions on the selected drive, (select by number) what do you want to do: ")
+ return generic_select(options.values(), "Found partitions on the selected drive, (select by number) what you want to do: ")
def generic_select(options, input_text="Select one of the above by index or absolute value: ", sort=True):
"""