index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-08 14:47:24 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-08 14:47:24 +0100 |
commit | 775a26f738002ad124200716b68f92ebc9e91a5c (patch) | |
tree | 6323bf03dd492312c66e93a9b3299b1d75fc3e36 /examples/guided.py | |
parent | dd66aeda9afac70c087d7a399eec456510d4bca8 (diff) |
-rw-r--r-- | examples/guided.py | 5 |
diff --git a/examples/guided.py b/examples/guided.py index 2b49d88a..0077b505 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -114,7 +114,10 @@ if archinstall.arguments['harddrive'].has_partitions(): archinstall.log(f" {partition} (Filesystem not supported)", fg='red') # We then ask what to do with the paritions. - if (option := archinstall.ask_for_disk_layout()) == 'keep-existing': + if (option := archinstall.ask_for_disk_layout()) == 'abort': + archinstall.log(f"Safely aborting the installation. No changes to the disk or system has been made.") + exit(1) + elif option == 'keep-existing': archinstall.arguments['harddrive'].keep_partitions = True archinstall.log(f" ** You will now select which partitions to use by selecting mount points (inside the installation). **") |