index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-12-25 18:42:56 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-12-25 18:42:56 +0000 |
commit | 2f90c03afd0bbf7c57ef2563149d281c9b3183d5 (patch) | |
tree | 1f3ba1876deb4a69b2eca93b718ac2ed27587ebf | |
parent | eb318c24db4f76395c8872ed33af2e68f2124bb1 (diff) |
-rw-r--r-- | archinstall.py | 5 |
diff --git a/archinstall.py b/archinstall.py index df63a08f..6b26059c 100644 --- a/archinstall.py +++ b/archinstall.py @@ -778,6 +778,9 @@ def cache_diskpw_on_disk(): with open(args['pwfile'], 'w') as pw: pw.write(args['password']) +def refresh_partition_list(drive): + args['paritions'] = get_partitions(drive) + if __name__ == '__main__': update_git() # Breaks and restarts the script if an update was found. update_drive_list() @@ -836,7 +839,7 @@ if __name__ == '__main__': close_disks() format_disk(args['drive'], start=args['start'], end=args['size']) - args['paritions'] = get_partitions(args['drive']) + refresh_partition_list(args['drive']) print(f'Partitions: (Boot: {list(args["paritions"].keys())[0]})') if len(args['paritions']) <= 0: |