Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 22:02:45 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 22:02:45 +0000
commit1129dae13d0f5cb9c33acd8b46b3173cb1a2e86a (patch)
treeb848a7ece79212d6432110fcb8dd9ec88d4841cf
parent3657cc5c6e2315f62273272c297f769e472a6fd5 (diff)
Debugging
-rw-r--r--archinstall.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/archinstall.py b/archinstall.py
index 525387f9..0a82ace7 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -803,6 +803,7 @@ def refresh_partition_list(drive, *positionals, **kwargs):
def mkfs_fat32(drive, partition, *positionals, **kwargs):
print(json.dumps(args, indent=4))
drive = args[drive]
+ print(partition, type(partition), args['partitions'], type(args['partitions']))
partition = args['partitions'][partition]
o = b''.join(sys_command(f'/usr/bin/mkfs.vfat -F32 {drive}{partition}'))
if (b'mkfs.fat' not in o and b'mkfs.vfat' not in o) or b'command not found' in o: