index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-02-17 12:14:43 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-02-17 12:14:43 +0100 |
commit | b5c862549a7b52c8eb53227db1a97e1a6114c040 (patch) | |
tree | 94a776dbd2b11e257e281a27736b474c8af9b70b | |
parent | 28adc20a30142ed93c2f730f6a653d76211a1399 (diff) |
-rw-r--r-- | examples/guided.py | 3 |
diff --git a/examples/guided.py b/examples/guided.py index aca3520b..7798ca08 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -129,6 +129,9 @@ if archinstall.arguments['harddrive'].has_partitions(): while 1: new_filesystem = input(f"Enter a valid filesystem for {partition} (leave blank for {partition.filesystem}): ").strip(' ') + if len(new_filesystem) <= 0: + break + try: partition.format(new_filesystem, path='/dev/null', log_formating=False, allow_formatting=True) except UnknownFilesystemFormat: |