Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk
diff options
context:
space:
mode:
authorDaniel Girtler <blackrabbit256@gmail.com>2023-09-19 06:47:46 +1000
committerGitHub <noreply@github.com>2023-09-19 06:47:46 +1000
commitc0ff55d55b855f6975f4e588f6368ccb2a4294ac (patch)
tree6d89854a5c6741edb1ef21015945188e17d9cc52 /archinstall/lib/disk
parentf6acdf5b5e30a3bf3b8c38c3221295126afff088 (diff)
Allow assigning mountpoint on existing partitions (#2067)
Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com>
Diffstat (limited to 'archinstall/lib/disk')
-rw-r--r--archinstall/lib/disk/partitioning_menu.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/archinstall/lib/disk/partitioning_menu.py b/archinstall/lib/disk/partitioning_menu.py
index 4c4d8fac..549c7f34 100644
--- a/archinstall/lib/disk/partitioning_menu.py
+++ b/archinstall/lib/disk/partitioning_menu.py
@@ -61,14 +61,13 @@ class PartitioningList(ListManager):
if not selection.exists():
not_filter += [self._actions['mark_formatting']]
else:
- # only allow these options if the existing partition
+ # only allow options if the existing partition
# was marked as formatting, otherwise we run into issues where
# 1. select a new fs -> potentially mark as wipe now
# 2. Switch back to old filesystem -> should unmark wipe now, but
# how do we know it was the original one?
not_filter += [
self._actions['set_filesystem'],
- self._actions['assign_mountpoint'],
self._actions['mark_bootable'],
self._actions['btrfs_mark_compressed'],
self._actions['btrfs_set_subvolumes']