index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-18 22:02:45 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-18 22:02:45 +0000 |
commit | 1129dae13d0f5cb9c33acd8b46b3173cb1a2e86a (patch) | |
tree | b848a7ece79212d6432110fcb8dd9ec88d4841cf | |
parent | 3657cc5c6e2315f62273272c297f769e472a6fd5 (diff) |
-rw-r--r-- | archinstall.py | 1 |
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: |