Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2022-08-09 20:05:05 +0200
committerGitHub <noreply@github.com>2022-08-09 20:05:05 +0200
commit437ac124c6f02bc4f1c7e319a8ad407acffe9d8f (patch)
tree8b4c6613241dc9695462c506f259bda3b74494c1 /archinstall/lib/installer.py
parenta31bf94fa3727ef2c13e37d33560f6acf1141902 (diff)
Converted paths to pathlib.Path and mount points to detect properly (#1412)
* Converted a path to pathlib.Path * Using Partition.mountpoints instead of Partition.mountpoint * Update mapperdev.py * Added .mountpoints to MapperDev * Spelling error
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 42f71678..a0bcc2a6 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -1000,9 +1000,9 @@ class Installer:
root_partition = None
for partition in self.partitions:
print(partition, [partition.mountpoint], [self.target])
- if partition.mountpoint == self.target / 'boot':
+ if self.target / 'boot' in partition.mountpoints:
boot_partition = partition
- elif partition.mountpoint == self.target:
+ elif self.target in partition.mountpoints:
root_partition = partition
if boot_partition is None or root_partition is None: