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.feeds@gmail.com>2021-03-08 16:09:51 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-08 16:09:51 +0100
commit948878e9e3c2f4e9c8c77b11704d529f952d478c (patch)
treecf28c722becbbc554459f586548a31891ce90962 /examples
parent1ef63147d0eeb002dcc9475f2fcec3abddc1298d (diff)
Added some debugging.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 15f9ba1c..9c4f208a 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -271,6 +271,9 @@ signal.signal(signal.SIGINT, original_sigint_handler)
Once that's done, we'll hand over to perform_installation()
"""
with archinstall.Filesystem(archinstall.arguments['harddrive'], archinstall.GPT) as fs:
+ for partition in archinstall.arguments['harddrive'].partitions:
+ print(partition)
+ exit(0)
# Use partitioning helper to set up the disk partitions.
if disk_password:
fs.use_entire_disk('luks2')