Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-11-22 15:08:41 -0500
committerGitHub <noreply@github.com>2021-11-22 21:08:41 +0100
commite532b7615813e72fe576c20eaf4cd988e9ef8729 (patch)
tree80af0c3add14876da11fda01355cb6bc69b0bcc9 /examples
parent0c96ae049dd188c0df247c29ea36715e92428d3a (diff)
Make NTFS an advanced option (#753)
* Make NTFS an advanced option
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 a86aafd2..3b2f87b8 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -109,7 +109,7 @@ def ask_user_questions():
allow_empty=True)
if archinstall.arguments.get('harddrives', None) is not None and archinstall.storage.get('disk_layouts', None) is None:
- archinstall.storage['disk_layouts'] = archinstall.select_disk_layout(archinstall.arguments['harddrives'])
+ archinstall.storage['disk_layouts'] = archinstall.select_disk_layout(archinstall.arguments['harddrives'], archinstall.arguments.get('advanced', False))
# Get disk encryption password (or skip if blank)
if archinstall.arguments['harddrives'] and archinstall.arguments.get('!encryption-password', None) is None: