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@hvornum.se>2021-04-09 23:42:28 +0200
committerAnton Hvornum <anton@hvornum.se>2021-04-09 23:42:28 +0200
commit22eb6e023ddf04552777d5c59a1054836964dd42 (patch)
treed2adecdd7b2de1f668bf16ab946b20298d473686 /examples
parent9b2f627d9eb024e5068e317c00e7f8d8bb0ffa09 (diff)
Fixing broken logic in guided
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 ed0a485a..b4b970bb 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -116,7 +116,7 @@ def ask_user_questions():
elif option == 'format-all':
archinstall.arguments['filesystem'] = archinstall.ask_for_main_filesystem_format()
archinstall.arguments['harddrive'].keep_partitions = False
- else:
+ elif archinstall.arguments['harddrive']:
# If the drive doesn't have any partitions, safely mark the disk with keep_partitions = False
# and ask the user for a root filesystem.
archinstall.arguments['filesystem'] = archinstall.ask_for_main_filesystem_format()