From 2f90c03afd0bbf7c57ef2563149d281c9b3183d5 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 25 Dec 2019 18:42:56 +0000 Subject: Refreshing partitions function --- archinstall.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: -- cgit v1.2.3-54-g00ecf