diff --git a/archinstall/lib/disk/device_handler.py b/archinstall/lib/disk/device_handler.py index e1c2f51d..4486f662 100644 --- a/archinstall/lib/disk/device_handler.py +++ b/archinstall/lib/disk/device_handler.py @@ -851,6 +851,7 @@ class DeviceHandler: auto-discovery tools don't recognize anything here. """ info(f'Wiping partitions and metadata: {block_device.device_info.path}') + for partition in block_device.partition_infos: luks = Luks2(partition.path) if luks.isLuks(): diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py index 1a5722fa..c00f1578 100644 --- a/archinstall/lib/disk/filesystem.py +++ b/archinstall/lib/disk/filesystem.py @@ -352,7 +352,7 @@ class FilesystemHandler: Tui.print(out, row=0, endl='', clear_screen=True) try: - countdown = '\n5...4...3...2...1' + countdown = '\n5...4...3...2...1\n' for c in countdown: Tui.print(c, row=0, endl='') time.sleep(0.25)